views:

146

answers:

1

Is it possible to set the direction that an asp:DropDownList appears on a page (e.g. up or down) in a code-behind/with javascript irrespective of how a browser will render it?

+1  A: 

No, you can't manipulate it's behaviour, but you can emulate dropdown lists with javascript, likely with a framework (jQuery, ExtJS, etc.).

erenon
but be careful changing the default behaviours of standard browser elements - users are used to them.
edeverett
I agree...that's one of my big UI hates. Just look at all the UI broken flash apps out there...
Kev
Thanks @erenon.@edeverett: Very good point.This will have to go down as a "known issue"
StuperUser