Drop Down Lists, and other Problems after upgrade

Noticed the problem on http://www.autotrader.com/cars-for-sale/?expandAllOptions=true&Log=0
Drop down lists do not respond they way they did last week - before 36.0.1 upgrade.
Choose a brand, and then you are supposed to be able to select from a list of models. Not happening.
I have several of the privacy add-ons (see below) but they have not changed with the upgrade (unless they too were upgraded automatically.)
FF is becoming less and less of a joy to use as the years go by.

Note that your System Details list shows that you have a user.js file in the profile folder to initialize prefs each time Firefox starts.
The user.js file is only present if you or other software has created this file and normally it wouldn't be there.
You can check its content with a plain text editor (right-click: "Open with"; do not double-click).
The user.js file is read each time Firefox is started and initializes preferences to the value specified in this file, so preferences set via user.js can only be changed temporarily for the current session.
You can delete the user.js file if you didn't create this file yourself.
You can use this button to go to the currently used Firefox profile folder:
*Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
*http://kb.mozillazine.org/Profile_folder_-_Firefox
Windows hides some file extensions by default.
Among them are .html and .ini and .js and .txt, so you may only see file name without file extension.
You can see the real file type (file extension) in the properties of the file via the right-click context menu in Windows Explorer.
See also:
*http://kb.mozillazine.org/Preferences_not_saved

Similar Messages

  • Creating a drop down list and linking it to Excel files

    How to create a drop down list and when i select any row in the dropdown list, it must open designated MS- Excel file? Can anyone help me in this with an example code?
    Thanks
    Anu

    Try this in 7.0 format.
    Attachments:
    Listbox for excel files.vi ‏15 KB

  • Hover Hyperlink State in Drop-Down Menu and other Hyperlink display problems

    Hi World!
    So, I'm finishing my new website for a client, but a have some problems:
    At first:
    I putted a Drop-Down Menu and it contains hyperlinks. Normal. But, I can't give a specific state to each hyperlink in the under-menus, I only can put a state for the global link in the Under-Menu! I can put a hover state to a normal HyperLink but not those into a Drop-Down Menu! It is normal?
    How can I make that each link in the Under-Menu has a specific hover state and not all together in the same group! (pictures jointed)
    (what I want to do with the links into the menu. - Juste a picture, not from A-Muse)
    Then:
    When I want to manage my website on BusinessCatalyst, I see strange underlines under my Menu links! (picture). But on Adobe Muse, I see no underline to these links! What's the matter? ^^
    (when it's on the prewiew mode)
    (On A-Muse)
    RESOLVED! But not completely. I've made a Hyperlink-style, but it doesn't works...
    On the prewiew (with the hovering mouse)
    EDIT: In the menu, "Accueil" and *Gérants Indépendants" musn't open another window under. So I made independent forms on the menu. But can I make that those one are in the menu TOO? I don't want to open the blue window for those one.
    Thanks a lot!
    O.

    http://metisfiance.businesscatalyst.com/
    That's the link!
    No I just can't "activate" the hover-modes, like the pictures! Normally, Adobe Muse must be easy to use and i used Muse like I have to do and so,.. It doesn't work^^ Why? You have now the link, I hope you can help me

  • Drop Down Lists and Value Change Events

    I have 4 drop down lists each with a set of values from the database.
    Based on the value of the first list(ValueChangeEvent only for list1) , I fetch data from the database and set the 'selected value' in the other lists.
    I have a Submit button which takes values from these 4 lists and puts it in the database.
    Problem:
    I change list 2 through list 4 and hit a Submit button which inserts all the values in the database.
    However,on Clicking the Submit button I never get the new selected values, it always refers to the previously fetched values.
    I tried to recreate this case in a Sandbox without a database , Here is the code:
    Page1.jsp
    <h:selectOneMenu id="list1" value="#{SessionBean1.selectedList1}" valueChangeListener="#{SessionBean1.list1ValueChangeListener}"  onchange="this.form.submit();" >
                   <f:selectItems id="dropdown1SelectItems" value="#{SessionBean1.list1}"/>
    </h:selectOneMenu>
      <h:selectOneMenu id="list2" value="#{SessionBean1.selectedList2}" >                           
                  <f:selectItems id="dropdown2SelectItems" value="#{SessionBean1.list2}"/>
       </h:selectOneMenu>
       <h:commandButton id="add" actionListener="#{SessionBean1.addActionListener}" value="Add"/>
        <h:inputText id="result" value="#{SessionBean1.result}" />SessionBean1
       public SessionBean1() {
            list1.add(new SelectItem("0","0"));
            list1.add(new SelectItem("1","1"));
            list1.add(new SelectItem("2","2"));
            list1.add(new SelectItem("3","3"));
            list2.add(new SelectItem("a","a"));
            list2.add(new SelectItem("b","b"));
            list2.add(new SelectItem("c","c"));
            list2.add(new SelectItem("d","d"));
            map.put("0", "a");
            map.put("1", "b");
            map.put("2", "c");
            map.put("3", "d");
        private void fetch_data(String value){
             selectedList2=map.get(value);
        public void list1ValueChangeListener(ValueChangeEvent vce){
                fetch_data(vce.getNewValue().toString());
        public void addActionListener(ActionEvent event){
            result=selectedList2;
        }I tried debugging and found that after the Value Change Event is fired only selectedList1 gets a new value during Update Model Values Phase and selectedList2 still has the old value.
    With this sand box project I cannot even get the second list to show the corresponding value.
    Any insight on this would be helpful

    Thank You Balus C,
    I just realized the reason why this is not working, I found the reason in your article Populating Child Menu's article, I am just
    putting it as a reference here.
    One concern is that the skipping of the UPDATE_MODEL_VALUES will also cause that the new values of the menu's which have immediate="true" set won't be set in the backing bean. This can partly be fixed by getting the new value from the ValueChangeEvent inside the valueChangeListener method and assign it to the appropriate property. But this won't work for other menu's of which the valueChangeListener isn't been invoked. This would cause problems if you select a child menu value and then select the parent menu back to null and then reselect it to same value again, the child menu which will show up again would remain the same selection instead of null while its child will not be rendered! To solve this we need to bind the menu's to the backing bean so that we can use UIInput#setValue() and UIInput#getValue() to set and get the actual values.+ The JSF lifecycle will set and get them in the RESTORE_VIEW and RENDER_RESPONSE phases respectively.+
    I am not sure I understand whether or not it is a limitation but the reason above is valid and I rolled back to binding my menus and getting to work with that.
    Is Binding UI components a wise idea because most of the attributes can be programmed using properties in Backing Beans unless you have to build new components?
    Thanks Again

  • How to use multiple drop down lists and do not allow duplicates.

    I am creating a roster that has multiple positions on multiple pages. I have a drop-down list that is populated with all of the employees and want to make sure that the same employee cannot be selected for multiple posts. Ideally, when one is selected in a position, that person would not be an option in the other drop-down lists. Also, when the form is published, the end user will not use the drop-down lists in order. I have found script to remove selected items, but it only works when the user makes selections in order (List1, List2, List3 etc).
    First time posting, any help would be appreciated.

    Look into the ring control.  It behaves a lot like an enum, but you can dynamically set its contents and values associated with those contents.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How can I restore the search bar drop down list and current search engine icon as it was in FF version 33?

    Is there a way to restore the search bar from version 33?
    I like seeing which search engine I have selected and the ability to change it with a drop down list BEFORE I highlight text, right-click, and select ' Search Google for "xxxx" '
    Any way to roll back this latest "improvement"?

    If you miss being able to switch search engines without going
    crazy with menus, try this out;
    '''[https://addons.mozilla.org/en-US/firefox/addon/context-search/ Context Search]''' {web link}
    Expands the context menu's 'Search for' item into a list of
    installed search engines, allowing you to choose the engine
    you want to use for each search.

  • Drop down lists and email buttons

    I am creating a form and I have about twenty items in a drop down list. I was wondering if and how I can set it so each item selected will cause an email button I have to change address. i.e item 1 sets the email button to [email protected] and item 2 sets the button to [email protected] I think it has something to do with binding but I only have basic training so I am lost. Any help that you can give will be greatly appreciated . Thank you in advance

    As mentioned, you can´t do that in InDesign but fortunately it´s fairly easy task to do in Acrobat Professional. You didn´t mention what are you sending, just an empty email that sender can fill in email client, whole PDF as attachment or some form data from PDF... all those options are possible by few lines of javascript in Acrobat side.
    I made you a quick sample which just opens up an email client, populates email address based on choise that user has made in combobox and some custom subject and body meassage text. You can find it from my dropbox: https://dl.dropbox.com/u/17227987/sampleform.pdf
    There´s only two formfields in that PDF; combobox for choosing email recipient (AA = [email protected], BB = [email protected] etc) and submit button. Check javascript code from
    -combobox´s properties > Validate tab and
    -button´s properties > Actions > Run a javascript.
    In combobox, small javascript sets the myemail variable´s value based on the choise user makes. In Button there´s small javascript that triggers the email client and uses the value of myemail variable as a target email address.
    ps. this sample probably works only in Acrobat and Adobe Reader. I have no idea how for instance MacOS Preview supports PDF javascript, probably not very well....=)

  • Formula that checks drop down list and then sums

    I have a table with a drop down list with two values: '$' and 'Hr' (cell called 'PType').  There is a cell called 'Proposed' that contains numerical data. The table is dynamic and can have more cells inserted via a button within the row.  I have a totals section that I want to total the SUM of 'Proposed' if the value in 'PType' is '$'.  I can't figure out what type of statement will allow me to write this.
    For now, my solution has been a hidden column whose cell simply states:
    if (PType == "$") then
        Proposed
    endif
    Then, in the totals section, I sum this hidden column since a value outside of '$' returns a '0' and won't affect my SUM.
    I am looking for a formula I can write that does this within the totals cell instead of having two cells.
    Thanks,
    Mallard27

    Here's my take on it.
    // form1.page1.subform1.table.footer.SUM::calculate - (JavaScript, client)
    var total = 0;
    for (i=0; i < form1.page1.subform1.table._row.count; i++) {
        if (table.resolveNode("row[" + i + "].Proposed").rawValue) {
            if (table.resolveNode("row[" + i + "].PType").rawValue == "$") {
                total = total + parseFloat(table.resolveNode("row[" + i + "].Proposed").rawValue);
    this.rawValue = parseFloat(total);
    Steve

  • Change values of drop down list when other drop-down list value is clicked

    Hi Gurus,
    I look for my requirement very much but I can't find. I think it must be very simple but I can't do it, please help :
    I have to custom added fields. Both of them is made drop-down list by picklist defined in GET_P...methods.
    When I click and select a value from the first drop-down list, I want that second drop-down values are fully changed, depend on what I select in the first list. If I select my value and press enter in the first drop down box, I can do my requirement with GET_V...method. But if I don't press enter, the values of second list doesn't change, they remain same. I want exactly that when I click and select a value from first drop-down list, second drop-down list values are automatically change, dependent on what selected. Do I have to define and event?? where and how, please help me..

    Hi,
    You must have created the field as a dropdown using the below code in the get_p method.
    CASE iv_property.
        WHEN if_bsp_wd_model_setter_getter~fp_fieldtype.
            rv_value = cl_bsp_dlc_view_descriptor=>field_type_picklist.
      ENDCASE.
    Here you need to add the below lines of code along with the previous code. for the first dropdown value
      IF iv_property =  if_bsp_wd_model_setter_getter=>fp_server_event.
        rv_value = 'DDLB_CLICK'.
      ENDIF.
    This would refresh the screen when the user selects any value from the dropdown.
    Regards,
    Radhika

  • How can I select from drop-down list and jumping to selected subform?

    I using LC Designer ES2 vers 9. Developing XDP. How can I Select from a drop-down list the appropriate selected subform (jumping to the selected subform on the page)?
    drop-down list...A (jump to subform1)
                             B (jump to subform2)
                             C (jump to subform3)
    subform1
    subform2
    subform3
    ....end of form

    Hi,
    you cannot set focus on a subform but on a field, as only interactive objects can be focussed.
    From a dropdowns exit event the script will look this way:
    switch (this.rawValue) {
              case "A" : xfa.host.setFocus("form1.page2.field1"); break;
              case "B" : xfa.host.setFocus("form1.page2.field1"); break;

  • No Battery Charge and Other Problems After OS3 Install - Solution?

    This relates ONLY to iPhone Users using the "PUSH" Function for Email or Other Apps!
    PROBLEM: It seems as though Apple is at least aware of the problem(s), i.e. once Exchange Email or another App using PUSH is configured, there is an OS3 bug that seems to be hardware independent (impacting ALL 1G, 2G and GS iPhones, but not consistently).
    SYMPTOMS: Include some or all of the following . . . rapid discharge (less than two hours from a fully charged phone, failure to charge (by AC adapter or USB to computer), failure to charge completely, perpetual dead battery icon, inability to boot, inability to automatically sleep, quite warm on upper back side, slow email, indication of a full or partially full charge dropping to no charge or dead when removed from charging source.
    CAUSE: OS3 Bug prevents consistent charging, draining the battery even when plugged in to a computer via the USB or into an A/C adapter (although I've been able to intermittently charge on an A/C adapter). In push mode, the Exchange email client on the iPhone continually queries the Exchange Server, cycling the iPhone CPU and continually draining the battery at a high rate (can
    WHAT I'VE BEEN TOLD BY APPLE:
    1) Defective Hardware (though I'm on my third 3G in a week, so I don't think hardware is the problem . . . Apple will consider replacement with a new 3G if my third 3G has the same problem)
    2) Corrupted App in iTunes - so I manually reloaded each app directly over wi-fi, one app at a time, this worked until I configured Exchange Email, at which time symptoms immediately appeared . . . so corrupted app unlikely.
    3) Initial data transfer after email configuration . . . but symptoms continued long after this.
    4) Wi-Fi - but turning wi-fi on or off had little effect, beyond normal.
    5) Restore to New Phone - this works fine UNTIL Exchange Email is configured and activated. Thus, the time consuming practice of reload all apps, photos, music, etc. will be for naught, once exchange email is turned on with "push"
    SOLUTION: Turning off "push" on your exchange email account
    1) Go to Settings - Mail, Contacts, Calendars - Fetch New Data
    2) Set Fetch Setting to 15 minutes to approximate the much more frequent "push" uploads and downloads. NOTE: Turning off \"push\" at this level will NOT turn off push on your exchange email account and the problem will not be resolved
    3) Scroll down and select - Advanced -
    4) Identify and select your Exchange Server account
    5) Select - Fetch -
    6) Leave settings
    Phone should cool down in a few minutes and work normally. The problem can be replicated and resolved repeatedly merely by toggling "push" on and off in your exchange email configuration.
    I was told that this is likely to be the "fix" until a patch is issued. No time frame was given for an actual fix that allows Exchange users to use push technology. Disappointing, since broader use of "push" technology beyond exchange was one of the big benefits of OS 3.0.
    NOTE: THIS PROBLEM DOES NOT OCCUR ON ALL iPHONES WITH OS3 USING THE EXCHANGE CLIENT. I have second 3G phone, identically configured (including push to exchange email) that has no symptoms at all. Go figure.

    Since two days ago, my battery indicator has been indicating 100% until the phone dies, which seems to be one of the symptoms you're describing.
    However, I don't use Push emails; my email client is configured to poll an imap server and has been that way since I got my phone over 6 months ago. To be on the safe side, I turned off Push anyway, but I'm still having the problem. Definitely 3.0 related as I've never had this problem before.
    Perhaps it's linked to an app? Personally I don't have a whole lot of them installed: Aurora Feint, fstream, twitterific, flixster, wikipanion, google earth, urbanspoon, STM Mobile, iDicto, Air Sharing, Facebook and Apple Remote. I've removed a few and will see how it goes.

  • Mail problems, slow browsing and Facebook problems after upgrading to Mountain Lion

    Hi !
    I have a 27” iMac from late 2009 which started acting really strange after upgrading to Mountain Lion.
    Before that everything works fine but now Mail does not work, will not send replies or add attachments and browsing has become so slow that it usually times out. Another strange problem is Facebook messages which does not work at all (cannot read nor send(.
    I have Lenovo laptop connected to the same network so I can benchmark and browsing works just fine on that aswell as FB messages.
    Anybody got a solution to this other than using the iMac for offline use only ?

    Hi !
    I booted both the modem and router but it did not help. Then I tried using the iMac on wireless and now it works so must be something in my D-Link router.
    Thanks for pointing me to the right direction !

  • Apple TV and AirPlay Problems After Upgrade

    hello
    after upgrading my Apple TV 2 to version 5.0 the AirPlay icon disappeared from my iPad which is running iOS 5.1
    I spent about 2 hours with Apple support but nothing they could think of helped and they gave up
    I love my Apple TV but am wishing I never upgraded now!
    many thanks for any help

    The upgrade took that feature on my iphone4 but is still there on my ipad2

  • Synch and connect Problems after upgrading to latest version 7.6.1.9 itunes

    OK... this is getting painful!!!!!!!!
    1. Has worked for 6 months flawlessly....
    2. Upgraded Apple TV to the latest update - 2.0 - new look and feel.
    3. Said I now needed to update iTunes to latest
    4. Updated itunes to 7.6.1.9
    5. Apple TV still showing in iTunes. Went to synch - "got apple TV not responding port 3689".
    Apple TV could still connect to movie trailers, youtube, everything,
    6. Tried repairing iTunes 7.6.1.9 with install. Had to reenter Apple TV password. Showed in device list - still same not responding error.
    7. Uninstalled iTunes - reinstalled - along with cycling Apple TV. Apple TV showed in device list - not responding still.
    8. Verified firewalls - non enabled just for a sanity check. I've kept all firewall stuff off. Still same issue.
    9. Tried Edit/ Preferences/ Sharing/ Share my library on local network. Nothing
    10. Verified "Look for Apple TVs" enabled and mine shows in list. Still nothing.
    11. Turned Airport Expres in Apple TV off. Cycled everything... itunes, Apple Tv... nothing... Turned it back on....
    12. In Apple TV I synched to local itunes.... Apple TV now got fully erased. as I expected, but did not care just wanted it to synch to the new content.
    13. Reset the Apple TV to factory settings...... It showed in the Itunes for a few seconds, but not enough time for me to put in the password. I've recycled everything again. For the life of me I can't get it to now show consistently in the device list..... My wireless works flawlessly browsing the internet. I've done netstat checks to verify the ports and everything seems as it always has. IT HAS TO BE THE UPDATES!!!
    There should be no application conflicts, because this machine has only been used to synch my Apple TV, nothing has been installed in a while, except iTunes!
    I'm about to bring it back........
    Any other thoughts out there?

    Resolved.
    After verifying my network configurations, which was fine, I started to look at the services loaded on the machine. I noticeced BLACKICE running! Once this service was stopepd, things went smoothly.
    I do still notice that the synch lasts only for so long and then disconnects the device. I have to restart iTunes to kick start the synch again. Still a little painful, but at least I can loat the Apple TV.

  • First generation iPad keeps shutting down safari and other problems.

    I have a first generation iPad.  It is currently running on iOS 5.1.1.   Now I just updated the software on my iPhone to is 6.1.2.  Does the iPad not follow the same update schedule?  It doesn't say it needs to be updated. 
    Anyway, on to my original problem.   My safari will randomly close down.   I'm not sure if it's considered crashing because no dialog box appears.  It usually happens on particular sites like Facebook or news sites.  If I go back it happens again. But I can go to a different site and it will work without closing down.  I am also having trouble typing emails or message board responses.  I will be in the middle of typing and it will stop responding.  I have to close the keypad and then fetal the screen so I can resume typing.  This can happen several times.  I'm not sure what the problem is.  I went through and cleared out a bunch of old apps hiking maybe my memory was getting to full.  That didn't help.  I reset my iPad and used my back p to get my apps back.  Didn't help.  Finally I reset my iPad to factory settings.  I didn't even restore my backup.   It's still happening. 
    Any ideas?

    You should try restoring the iOS software now if resetting the iPad did not help. This explains how to do it. I hope that you have a backup, because restoring the software erases the device, but you have the opportunity to restore from the back after the software is installed again.
    iTunes: Restoring iOS software - Support - Apple
    Pay close attention to the very end of this article - the section titled Additional Information. That will take to a link that instructs you how to use Recovery Mode to restore if the first method does not work for you.

Maybe you are looking for

  • The Application Solver Doesn't open

    Whenever I try to open the "Solver "application the most unusual thing happens. It opens Microsoft Excel instead. There's this box following with the message that the Solver quit unexpectedly and a huge log is also presented: Process:         Solver

  • How to register Lenovo B570 for warranty in the UK?

    Having bought a new B570 just before this new year (28th Dec 2011), I am still finding it impossible to register this laptop. After reading a message from someone that they had a crack appear on their B570's screen, I am very concerned - that I am ye

  • Re: Select statement in the report

    Hi Experts, In my selection-screen contains ernam as a parameter. If it balnk in the selection-screen, the select statement is not working. if it is not blank ,the select statement is  working fine. TABLES: vbak. TYPES: BEGIN OF ty_vbak,         vbel

  • I need Firefox 10.0 or 19.25 instead of 24.0, how do I get a different version?

    Firefox version 24.0 is not compatible with a website I frequent. I was told I need to use FIrefox 10.0 ,19.25 or Explorer 9.0 for the documents to be compatible. How do I download a different version of Firefox?

  • Grid in Oracle Forms

    wil it be possiblt to create a form where we can drag the change the width of the columns in the form. How can this be accomplished?