Forcing RadComboBox drop down direction
Asked Answered
S

1

5

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.

Snowblink answered 7/2, 2012 at 15:26 Comment(0)
E
12

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.

Engaged answered 7/2, 2012 at 16:39 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.