I have a RadTreeView placed in a PageView of RadTabStrip and tried to support keyboard access, but the TreeView won't be on focus when pressing Tab key. The TreeView is populated by datasource in DataBind. I want to focus on the first checkbox in the tree. Please advise.
The property TriStateCheckBoxes set True seems cause the issue not getting onFocus. If set as false, TreeView get focus on tab. How to enable TriStateCheckBoxes and get tab focus?
<telerik:RadPageView ID="MCCCodePageView" runat="server" CssClass="tabpageview"> |
<div style="margin:10px"> |
<div class="helpmodtitle"> |
<asp:Label ID="MCCCodePageViewHeader" runat="server" ></asp:Label> |
<a href="#"><img alt="Help" border="0" src="../images/helpicon.png"/></a> |
</div> |
<telerik:RadTreeView ID="TransCatTree" runat="server" |
Width="95%" |
Height="300" |
CheckBoxes="true" |
TriStateCheckBoxes="true" |
CheckChildNodes="true" |
BackColor="White" |
Skin="Outlook" |
BorderWidth="1px" |
BorderColor="#94A7B5" |
ShowLineImages="false" |
MultipleSelect="false" |
TabIndex="1" |
AccessKey="W" |
OnClientNodeChecked="TransCatTree_ClientNodeChecked"> |
</telerik:RadTreeView> |
</div> |
</telerik:RadPageView> |