6

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?

Brian David Berman
  • 7,514
  • 26
  • 77
  • 144

2 Answers2

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
1

Add this property in telerik dropdown

You can change direction dynamically also

ExpandDirection="Up" 
gnat
  • 6,213
  • 108
  • 53
  • 73
Guru
  • 11
  • 1