This question is locked. New answers and comments are not allowed.
Hi. I have TreeListView with textBox controls as DataTemplate. When I press Enter button in TextBox next item's cell in TreeViewList should be focused. How to set focus on it ?
<
local:RadColumn
Header
=
"Name"
IsEditable
=
"True"
>
<
local:RadColumn.CellTemplate
>
<
DataTemplate
>
<
TextBox
Text
=
"{Binding Name, Mode=TwoWay}"
TextChanged
=
"TextBox_TextChanged"
VerticalAlignment
=
"Center"
/>
</
DataTemplate
>
</
local:RadColumn.CellTemplate
>
</
local:RadColumn
>