Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Forcing RadComboBox drop down direction

Users are desiring that the drop down window of a RadComboBox go up instead of down, regardless of where on the screen they are. Not sure why, but how would you implement this?

Note: I have a RadComboBox with a custom template, not the default implementation.

Thanks.

like image 232
Brian Mains Avatar asked Feb 07 '12 15:02

Brian Mains


1 Answers

You have to disable screen boundary detection. Then you can set the expand direction to "Up", e.g:

<telerik:RadComboBox runat="server"
    EnableScreenBoundaryDetection="false" ExpandDirection="Up" />

Update: it seems this also works without disabling EnableScreenBoundaryDetection.

like image 119
M4N Avatar answered Nov 04 '22 23:11

M4N