You need to sign in to do that
Don't have an account?
theitdeptrocks
IE9: Picklist won't drop down
Hi all,
Within IE9, I have having a problem with the picklists within one of my VF pages. The problem is affecting both standard <Select/> and <apex:selectList/> tags.
The fields appear, however they are not clickable - meaning they do not expand/drop down to display their options. If you tab through the fields and land on one of the picklists, you can use the up and down arrow keys to scroll through the options.
Using compatibility mode, IE8, or FireFox remedies the issue.
<div align="left"> <apex:outputPanel id="controls"> Size: <select id="resizevalue" onchange="resize();"> <option value="100%">100%</option> <option value="75%">75%</option> <option value="50%">50%</option> <option value="25%">25%</option> <option value="10%">10%</option> </select> <br /> Form: <apex:selectList id="form" value="{!form}" size="1" required="true"> <apex:selectOptions value="{!forms}"/> <apex:actionSupport event="onchange" reRender="results" action="{!thelist}" oncomplete="preload();" /> </apex:selectList> </apex:outputPanel> </div>
Has anyone else experienced this or have a fix for it?
Thanks!
Turns out that it is not the fault of the CSS listed. That will work fine as displayed. I had another script on the page that made the <DIV/> draggable that was causing the picklists to not open.
Blog: http://www.salesforcery.com
All Answers
Hi theitdeptrocks,
I have experienced similar situation while designing a mockup for 1 of my projects recently and what is surprising it also impacts HMTL dropdowns too.
Unfortunately I havent figured out a fix for it ... in case if you can resolve please do share it with the community....
I have discovered that if I move a picklist outside of that <div/>, it works fine.
This is the CSS applied:
I have not yet started removing elements from the above to see which it might be.
Turns out that it is not the fault of the CSS listed. That will work fine as displayed. I had another script on the page that made the <DIV/> draggable that was causing the picklists to not open.
Blog: http://www.salesforcery.com