Validation Select works on FF not on IE

Hi guys!
Made a few tweaks on the site today, and I just realized that
my Validation Select Widget was not working on IE 7 (!). I'm
completely puzzled. It works fine on Firefox, as always... could
someone shed some light?
Here's the page:
http://www.cosmicollective.org/archive.html
What am I missing?
Thanks in advance.
Tomas

Hi Cristian,
Thank you very much for your reply. I fixed the errors you
pointed out, and I also realized I didn't quite understand what the
problem was:
I completely removed the Validation Select script, because,
as you said, there are no forms on the site. The problem is that
the changes on the selection form do not reflect the
spry:detailregion that is supposed to display the selected item on
the list. The problem should be within the drop-down list code,
which has the "spry:setrow" function.
Again, this problem is for IE only (and Safari, which does
not load any data, but that's a different forum post). Firefox and
Opera change the post accordingly.
Note that on FF the page loads with both master and detail
region set on the same row, but on IE the drop-down list displays
the first item, and the detail region displays the last - they seem
to be completely unrelated.
Does this clarify the problem? Again, I appreciate a lot your
help, and thank you in advance.
Best regards,
Tomas

Similar Messages

  • Spry Validation Select problem. It's not "sticking"

    Used Spry validation a few times, no big deal. Insert the widget, tweak, upload, done.
    I'm trying to validate one single drop down menu. I go to Insert, Spry Validation Select, I get the little blue "tab" thing attached to the drop down, and we're all good.
    I close the doc, open it back up and it's no longer there. You can click on the drop down menu, and no blue tab comes up for the spry.
    This doc is on a template, in an un-editable area.
    It seems to write the code to the page, you can find it if you look, but it's just not working.
    I know this is a long shot, but has anyone had this issue with Spry?
    I've been screwing around with this one doc for days trying to figure it out. I even went as far as pulling a backup copy that had never been "spry'd" before and starting over.
    Same result.
    A page that should have the spry working is:
    http://wolfe-florist-waco.com/online-flowers/ED-101.html
    Thanks.

    Suggest you start by cleaning up the code and validating the page
    http://validator.w3.org/check?uri=http%3A%2F%2Fwolfe-florist-waco.com%2Fonline-flowers%2FE D-101.html&charset=%28detect+automatically%29&doctype=Inline&group=0
    The link you posted is a page within a page (multiple Doctypes etc).
    Are you using Server Side Includes to pull code into the page? If so, the Include cannot be a self-contained page. It must be a code fragment only so that when it's pulled into the page, the resultant code forms a complete, valid web page.

  • Selections & Levels Adjustment Layer Not Working Properly

    Hello,
    I'm experiencing something that I've never encountered before.  I’ve used the selection function and levels adjustment layer hundreds of times and I’ve never ever seen this...
    When I make a selection (in this case the signatures on the attached image) and then darken that selection using a levels adjustment layer, some of the surrounding information is changing/darkening as well.  This should not be happening.
    What's the fix?
    Best,
    Michelle

    The solution I already gave you is valid, and works to modify your existing method, depending on your Quick Mask setting. Rather than reject it out of hand, I suggest you use it.
    The problem is that I've performed this procedure hundreds of times before, using the very same steps below, and this particular oddity has never happened, until now.
    If you have selected different Eyedropper settings (Range for example), or the image has even slightly different tonal or colour characteristics to normal, your method will not always work. Your method is too crude. In particular the need to alter the selection using the Marquee selection tool, suggests that some knowledge is required. 
    There are better methods that will produce perfect masks - using Calculations, channel operations, or even the new Refine Edge command. You probably don't even need selections at all to do this, because Curves and Advanced Blending Options could be used instead.

  • Select * from tab is not working in oracle 10g

    select * from tab is not working in oracle 10g. But at the same time,
    select * from <<table>> is working.
    Please advise me.

    This works for me in 10.2.0.2
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> select * from tab;
    TNAME                          TABTYPE            CLUSTERID
    LOAN_DETAIL                    TABLE
    PLAN_TABLE                     TABLE
    ...

  • While updating 4.0 version to 5 version system shows sim card is not valid. My iphone is not working .Please help me

    while updating 4.0 version to 5 version system shows sim card is not valid. My iphone is not working .Please help me

    I would imagine your iPhone was hacked to make it work on your local carrier.
    Updating the iOs to 5.xx will lock it back to the original carrier .The carrier holding the lock are the only
    entity able to authorise the unlock .You will have to contact them and see if they unlock and the terms the apply

  • Type to selection tool quick command not working in InDesign CC

    When I have the type tool selected in InDesign and hold command for the selection tool, it's not working. When I hold the command button it highlights the selection tool, but as soon as I click my mouse, it reverts back to the type tool. Also, when I change the size of my text box it does not resize the text in the box, even if I hold for a a few sec before moving the cursor.

    @Cindy – usually all 3rd party developers will provide some information for installing and uninstalling their products. First see if you can find some information on their web sites.
    Also there should be a dedicated Adobe Extension Manager app where you can look up the installed parts of InDesign. Since I do not have InDesign CC installed, I do not know exactly, but its name should be something like "Adobe Extension Manager CC".
    If you start this app it will show all parts installed with InDesign (or other apps that are installed).
    Usually at the bottom of the list are the 3rd party installed components. They do not state "Adobe Incoroprate System" as author. Never uninstall (remove) the Adobe ones!
    Here a screen grab from my German Adobe Extension Manager CS5:
    If you select one, a new option is available at the right. In my case here the "Entfernen" button ("Remove" in English).
    Uwe

  • SELECT INTO ( variable ) STATEMENTS NOT WORKING FOR SYBASE TABLE AS VIEW

    Dear Experts,
    We have connected our 9i db with Sybase db using Hs connectivity.
    and then we have create the view in oracle db for SYBASE_TABLE as SYBASE_TABLE_VIEW.
    ALL THE INSERT, UPDATE AND DELETE COMMANDS ARE WORKING BUT THE
    select Into (variable) is not working.
    Please help to resolve the select into statment which is in BOLD in the below routine
    PLEASE NOTE! FORM WAS COMPILED SUCCESSFULLY AND FORM IS RUNNING BUT SELECT INTO COMMAND IS NOT WORKING.
    Thanks & Regards
    Eidy
    PROCEDURE SRBL_INSERT IS
    CURSOR SRBL IS
         SELECT impno,impcod,impnam
         from oracle_table1 a, oracle_table2 b
         WHERE a.impcod=b.empcod
         v_srpcod varchar2(5);
    BEGIN     
    FOR rec in SRBL loop     
         begin
    select "im_code" into v_impcod                    
         from SYBASE_TABLE_VIEW
         where "im_code"=rec.impcod;
    exception when no_data_found then
         v_srpcod:=null;
    end;
    END LOOP;
    END;
    Edited by: Eidy on Aug 16, 2010 11:28 AM

    hellow
    try this.
    select "im_code" into v_impcod
    from SYBASE_TABLE_VIEW
    where "im_code"=rec.impcod;
    v_srpcod := v_impcod ;
    ........

  • The select/start button is not working on my Vita?

    as title, anybody face the problems???
    actually, my vita (wifi) freezed last week, PS button blue light, cannot shut down.
    after hold down power button, enter to Safe Mode, and done everything (restore, restart, rebuild, format m.card).
    now, PS button alive, working, but select / start button still not working!!
    HELP HELP HELP.......

    Here Is the Solution see on pictures This Fault Is Caused With Shorted Right Top Button When This shows conductivity few ohm this interfere with the signal line on the pcb.to test it disconnect this button from the socket by lifting up the small lock on amphenol socket.measure the 2 tracks on the foil if its conductive.in most cases will be leave it disconnected turn on the psp vita with some games and test if the start button respond 99% it will be working ok.if yesthen turn off the unit disconnect the main battery to avoid shortage to the motherboard.peel gently off the top right button and replace with new oneiff you cannot get parts then separate the 2 foil and clean the ferrite pad's.cut a thin foil with 2 hole same size as the button conductive pad's this will create bigger gap between these conductive touch pad's and the foil. Warning !!! This guide is for advanced component level engineers not for beginners require esd protection.  

  • Validation of existing certificate does not work since release 9.3.3

    Hi everyone,
    Since I updated to Adobe Reader 9.3.3 the validation of digital signatures does not work properly anymore. Though I try to validate the certificate that used to be OK before the upgrade to 9.3.3 I now get an error on the same document and signature that used to work before. In the signature details Adobe Reader now states that "The certificate ...is not trusted...". This has to do with the new Adobe Approved Trusted list (AATL) I assume since nothing else changed.
    Does anybody know a workaround or is anybody aware of a bugfix that will be released in the near future?
    Thanks in advance,
    Mike G

    Works for me.
    What OS/JDK etc are you using?

  • RoadMap creation Error "Selected Enhancement/Release is not valid"

    Hi,
    I am trying to create a RoadMap using T-Code RMDEF.
    While creating the RoadMap I am getting Error
    <b>"Selected Enhancement/Release is not valid"
    "Message no. AI_ROADMAP_EN050"</b>
    My role has the following profiles
    SAP_ALL
    SAP_NEW
    Also, I can copy a RoadMap, but can’t create a new one.
    If you have a solution for this, please let me know.
    Regards,
    Vikas

    Hello  Vikas,
    I had the same problem and was solved following the instructions of note 924068
    Plase note thad the customizing path described in the note is not current (as of solman sps 23) just use the search functionality with term KW context to find the IMG activity
    or the correct path is:
    SPRO -> SAp solution manager implementation guide -> Sap solution manager -> cross scenario settings -> document management -> knowledge warehouse options -> Define kw context
    regards

  • Select works with SQL Server but not with Oracle!

    Hello
    this select works on SQL Server correct, but it don't work on Oracle!
    Can someone help me?
    Select * from Tabelle, Tabelle as XXX Where Tabelle.ID=XXX.IDTabelle
    Thanks
    Thomas

    Hi,
    These are the things which I have noticed, which wont work in Oracle ..
    Table As XXX ?? Are you giving alias name for the table .. The syntax which you have givne doesnt work in Oracle
    Regards

  • Can't get validation to work.

    I can't get my validation to work.  What I want is to create a validation that makes a particular field required when certain options are selected from a select list that has a display value containing text and a return value containing an ID number.  Let's say the select list is the Type and the field required is Additional_Info.  If the type is 'First Unit' (ID=1), or 'Second Unit' (ID=2) - I want the Additional_Info field to be mandatory.  How can I accomplish this?
    Thanks,
    -Steve

    Create a new Page Item validation on your page (lets assume your two page items are P_TYPE and P_ADDITIONAL_INFO:
    Details of your validation could be:
    Type: Item / Column Specified is NOT NULL
    Validation Expression 1: P_ADDITIONAL_INFO
    Associated Item: P_ADDITIONAL_INFO
    When Button Pressed: [Your Submit Button]
    Condition Type: Value of Item / Column in Expression 1 is Contained within colon delimited List in Expression 2
    Expression 1: P_TYPE
    Expression 2: 1:2

  • Spry Validation Select ultimate beginner

    Hello to all,
    I need help with the spry validation select thingy.  Basically, I am not a programmer, so code stuff won't help me much.  I need a bit of a walkthrough:
    The problem:
    1) I need 2 validation select boxes with about 10 choices each.
    2) I need an activation button  - that is, when the correct choices are selected, the user presses a button to take them to the right webpage.
    3) I need the choices within each select box to (obviously) direct the user to a different page once the activation button is pressed.
    My solution so far:
    1) I can insert the 2 validation select boxes into dreamweaver, with what i think is the correct naming, etc.  I can also set the 10 choices for each.  I do not know what the "value" tab means in the "list values" button I use to name and set the number of choices.
    2) I can insert the button as well (just insert, nothing else)
    3) I am not able to link the 10 choices with anything - I simply don't know how to do that, and cannot find info about it.  When I live preview my work so far I get 2 nice drop/validation boxes with 10 choices each, and a button.  I now need to, given a specific choice and after the button is pressed, to take the user to a different webpage with information about the double selection they chose. 
    I hope the above is clear enough - in the end, I will have 100 seperate webpages that need to be linked to the choices (10 choices in one box times 10 choices in the other box), I just need a way to link those choices to the webpages.  Any basic and non-code based help would be very appreciated,
    Cheers,
    P

    I need help with the spry validation select thingy.  Basically, I am not a programmer, so code stuff won't help me much.  I need a bit of a walkthrough:
    You have got no hope!
    1) I need 2 validation select boxes with about 10 choices each.
    You have stated that you have already done this. The value of the select element can be found here http://www.w3schools.com/tags/tag_select.asp
    2) I need an activation button  - that is, when the correct choices are selected, the user presses a button to take them to the right webpage.
    You have stated that you have already done this
    Seeing that you have already done the above, these are no longer a problem. This leaves us with
    3) I need the choices within each select box to (obviously) direct the user to a different page once the activation button is pressed.
    For this we would need to see your markup in situ. Please supply a link to your site.
    Gramps

  • Spry validation select widget problem

    Dreamweaver CS3
    Im using spry validation for my form but the two spry validation select widgets I am using are not working. When I test them I keep getting errors that nothing has been selected when something has in fact been selected. I've used spry validation before with no problems but this is the first time using the spry validation select widget.
    My code:
    <tr>
                <td valign="top">Page in Question*</td>
                <td valign="top"><span id="spryselect1">
                  <label>
                  <select name="select1" id="select1">
                    <option selected="selected">Home</option>
                    <option>About Us</option>
                                </select>
                  </label>
                  <span class="selectRequiredMsg">Please select an item.</span></span></td>
              </tr>
              <tr>
                <td valign="top">Which Internet Browser do you use?*</td>
                <td valign="top"><span id="spryselect2">
                  <label>
                  <select name="select2" id="select2">
                    <option selected="selected"> </option>
                    <option>Internet Explorer</option>
                    <option>Firefox</option>
                    <option>Safari</option>
                    <option>Opera</option>
                    <option>Google Chrome</option>
                    <option>Other</option>
                  </select>
                  </label>
                  <span class="selectRequiredMsg">Please select an item.</span>              </span></td>
              </tr>
    Appreciate the help.

    Hi Daniel,
    Im having the same problem, can you please tell me what you did? I understand you found the problem?
    Thank you!

  • The html select box option is not getting displayed properly in IE11

    The html select box option is not getting displayed properly in IE11
    I have developed a website that has a select box drop down. The select box drop down is getting displayed properly in IE9. But in IE11, if I am selecting any option apart from the first one, the whole select box option is getting moved up in the page.
    In IE11, if option 2 is selected, then the select options is getting moved up. But in IE9, if option 2 is selected, then the select options is getting displayed properly.
    Please let me know the fix so that the select options are displayed in the same manner as in IE9.
    Sorry but I am unable to upload images as this site is throwing some error

    Hi Kevin Shen,
    Thanks for post.
    I tried above code in ie 11(version 11.0.9600.17633).
    But it is not working. If you select option 2, and open select box then it open on the select box.
    It should open below the select box.
    Code for above:-
    <select>
    <option>1</option>
    <option>2</option>
    <option>3</option>
    </select>
    Sorry I could not attach screen shot. We have normal select box with three options. If we select option 2, it is showing option list on the select box. It is coming below the select box in ie 10 and other browse like chrome. 
    So what we should do, so that all options will come below the select box?
    Thanks,
    Yogesh Toke

Maybe you are looking for

  • What is difference between WS_UPLOAD and GUI_UPLOAD

    Dear gurus, Because my office implement SAP for a long time ago so some programs contain WS_UPLOAD function and I find that is obsolete so I want to know what is different or benefit if I modify program to use GUI_UPLOAD function instead of WS_UPLOAD

  • Line by line checking

    Hi, my program is running perfectly but it is giving just one digit different than the output which iam expecting . i want to trace the program line by line , is their any command to trace a program like in " C".

  • FDMEE Jython Import Script - Split field function

    Hi folks, I have to admit, this Jython gives me heavy headaches! Actually it is a simple challenge, but I am struggling around with it for hours now. Perhaps one of you guys can help. I want to create an Import Script in FDMEE 11.1.2.3.500.17. The so

  • After update to 10.9.1 can't send large email

    I am using exchange server 2010. Max size on server is set to 400MB.  I cannot send anything over 20MB since I updated to 10.9.1 mavericks.

  • CS6 won't upload my camera's memory card.

    How do I get my CS6 to recognize and upload photos from my camera's memory card.  I put it into the hole but it won't read it.I