Is there a way to force the dropdown of a RadComboBox to ONLY appear below and never above regardless of what the control feels would be the most visible?
Asked
Active
Viewed 3,432 times
2 Answers
9
Setting the EnableScreenBoundaryDetection
property to false
should do the trick.

Atanas Korchev
- 30,562
- 8
- 59
- 93
-
Love it! so simple - why is it not in their documentation?? – JumpingJezza Feb 17 '11 at 03:19
-
Thank you. Been bugging me for a while, even with ExpandDirection="Down" set. – Tom Jul 12 '11 at 23:27
-
Thanks! I also don't understand why it's not in the documentation: http://www.telerik.com/help/search.aspx?q=EnableScreenBoundaryDetection&ppId=561&pId=583&start=0 There also appear to be some strange issues when the dropdown opens upwards. For instance, it will expand past the top of the page if the list contains enough checkboxes. If it expands downwards, the dropdown will become scrollable. – Itison Feb 21 '13 at 02:07