Is there a fully-functional dropdown replacement for HTML SELECT that works in IE?
Posted
by Ken Paul
on Stack Overflow
See other posts from Stack Overflow
or by Ken Paul
Published on 2008-11-20T17:14:57Z
Indexed on
2010/03/12
4:37 UTC
Read the original article
Hit count: 752
We determined in a previous question that many features of HTML SELECTs are not supported in IE. Is there an alternative widget that you would recommend from your experience that meets the following requirements?
- Respects the
contentEditableproperty (does not allow selection changes if true) - Respects the
disabledproperty of individual OPTIONs (shows them "grayed out" or with strike-through font, and makes them un-selectable) - Supports Option Groups (
OPTGROUPelements) - Supports
styleoptions such asborderandmarginin theSELECTand all sub-elements - Supports dynamic add and delete of
OPTIONandOPTGROUPelements - Supports the above in IE version 6 and above
EDIT: As noted by @Joel Coehoorn, items 3 and 5 above are currently supported in IE. They are included here to make sure they are not overlooked in a replacement widget.
© Stack Overflow or respective owner