I implemented your code sucesfuly but, there are some alignment and z-index problems when I use three select items in three columns in one row in a table.
I am also using the script: http://www.hedgerwow.com/360/dhtml/ui_select_with_fixed_width/demo.php
It works fine for Firefox, however for IE 6, it is loosing the selected value and passes ‘1′ when I select by clicking the mouse on the drop down. If I do not use the drop down and just tab onto the field and use mousewheel or up/down keys, it is just working fine.
It doesnt seem to allow the use of the onchange method? I really need this script as its the only one I found which does what I want BUT it doesnt work in IE correctly? Is there any ideas to sort sthis out?
Hi Hedger,
I’ve used your script ‘Select Box I.E. Width Problem’ and found that it assigns incorrect option values. All options get value=1 . To fix that, on 188 line i’ve replaced:
o.value = obj.value;
to
o.value = el.contentOptions[obj.selectedIndex].value;
Now everything works perfect.
Jon | 03-Aug-07 at 11:58 am | Permalink
This is perfect - thanks so much for posting this!!!!!
Haluk Orhan | 21-Aug-07 at 1:16 am | Permalink
Hi,
Thanks a lot for the script: Fix Drop down with fixed width cutt-off bugs on IE
I need your help. I am trying to use your script at: http://www.hedgerwow.com/360/dhtml/ui_select_with_fixed_width/demo.php
I implemented your code sucesfuly but, there are some alignment and z-index problems when I use three select items in three columns in one row in a table.
Please contact us.
Regards…
Patel | 13-Dec-07 at 1:41 pm | Permalink
Hi,
I am also using the script: http://www.hedgerwow.com/360/dhtml/ui_select_with_fixed_width/demo.php
It works fine for Firefox, however for IE 6, it is loosing the selected value and passes ‘1′ when I select by clicking the mouse on the drop down. If I do not use the drop down and just tab onto the field and use mousewheel or up/down keys, it is just working fine.
Thanks.
Amuse | 16-Jan-08 at 1:54 pm | Permalink
Do you have any solutions that don’t require Active X or Javascript?
Tony Gayter | 19-Feb-08 at 7:03 am | Permalink
I am also having issues with http://www.hedgerwow.com/360/dhtml/ui_select_with_fixed_width/demo.php
It doesnt seem to allow the use of the onchange method? I really need this script as its the only one I found which does what I want BUT it doesnt work in IE correctly? Is there any ideas to sort sthis out?
Sarabjit | 09-Jul-08 at 5:31 am | Permalink
hey,
I went through the solution for the ‘cutting of text in select box options’ for IE 6 and below at
http://www.hedgerwow.com/360/dhtml/ui_select_with_fixed_width/bk/demo.php
When i tested your link on IE 6.0, it didn’t seem to work.
Am i missing something here. It would be really cool solution if it works.
Thanks.
Darius Bisikirksas | 16-Jul-08 at 11:53 pm | Permalink
Hi Hedger,
I’ve used your script ‘Select Box I.E. Width Problem’ and found that it assigns incorrect option values. All options get value=1 . To fix that, on 188 line i’ve replaced:
o.value = obj.value;
to
o.value = el.contentOptions[obj.selectedIndex].value;
Now everything works perfect.