I have a RadComboBox that has a single templated item that is a RadTreeView.
I'm looking for suggestions about how I might go about giving the RadTreeView keyboard focus when the RadCombobox's dropdown is opened.
Assume my markup is simpliar to this ...
Where the ComboFocus function simply opens the dropdown.
So, what I'm trying to establish is, is there anyway I can - programmatically - give my treeview control of the keyboard?
--
Stuart
I'm looking for suggestions about how I might go about giving the RadTreeView keyboard focus when the RadCombobox's dropdown is opened.
Assume my markup is simpliar to this ...
<
telerik:RadComboBox
runat
=
"server"
ID
=
"RadComboBox1"
AutoPostBack
=
"false"
AccessKey
=
"V"
OnClientFocus
=
"ComboFocus"
OnClientDropDownOpened
=
"DropDownOpened"
>
<
ItemTemplate
>
<
telerik:RadTreeView
ID
=
"RadTreeView1"
runat
=
"server"
CausesValidation
=
"false"
>
<
Nodes
>
<
telerik:RadTreeNode
Text
=
"Node 1"
Value
=
"1"
/>
<
telerik:RadTreeNode
Text
=
"Node 2"
Value
=
"2"
Selected
=
"true"
/>
<
telerik:RadTreeNode
Text
=
"Node 3"
Value
=
"3"
/>
</
Nodes
>
</
telerik:RadTreeView
>
</
ItemTemplate
>
<
Items
>
<
telerik:RadComboBoxItem
/>
</
Items
>
</
telerik:RadComboBox
>
Where the ComboFocus function simply opens the dropdown.
So, what I'm trying to establish is, is there anyway I can - programmatically - give my treeview control of the keyboard?
--
Stuart