Hi,
I have a RadComboBox control with an embedded treeview control as defined below.
The issue is that when the dropdown is opened and the treeview is displayed, if the user expands the tree, I end up with 2 scollbars. One for the combobox and one for the tree. I'd like to hide the scrollbar on the combobox if that is possible.
Any help would be great.
Thanks ... Ed
I have a RadComboBox control with an embedded treeview control as defined below.
The issue is that when the dropdown is opened and the treeview is displayed, if the user expands the tree, I end up with 2 scollbars. One for the combobox and one for the tree. I'd like to hide the scrollbar on the combobox if that is possible.
Any help would be great.
Thanks ... Ed
| <telerik:RadComboBox ID="ddlTask" runat="server" Height="140px" Width="300px" |
| ShowToggleImage="True" Skin="Vista" Style="vertical-align: middle;" OnClientLoad="tvCombo_Load" |
| OnClientDropDownOpened="tvCombo_OnClientDropDownOpenedHandler"> |
| <ItemTemplate> |
| <div id="div1" onclick="tvCombo_StopPropagation(event);"> |
| <telerik:RadTreeView runat="server" ID="tvTask" |
| OnClientNodeClicking="tvCombo_NodeClicking" Skin="Vista" Height="140px" |
| > |
| </telerik:RadTreeView> |
| </div> |
| </ItemTemplate> |
| <Items> |
| <telerik:RadComboBoxItem Text="" /> |
| </Items> |
| <CollapseAnimation Type="None" /><ExpandAnimation Type="None" /> |
| </telerik:RadComboBox> |