I have the next code in OnLoaded event.
Then i set RadGrid.IsTabStop = true, and RadGridTabStop = false; and on a button click i find 29 elements, that have IsTabStop = true.
I don't know but between Loaded and button click al this controls gets IsTabStop = true.
I found this thread here, and i want to ask, if this is implement in Latest internal build (2010.1.416.1040).
I must say, that i am really excided about TabNavigation.Once.
But it would be nice also if setting RadGrid.IsReadOnly property to false, grid would take care for all of his children.
var items = from t in this.ChildrenOfType<Control>() where t.IsTabStop == true select t; |
foreach (var item in items) |
item.IsTabStop = false; |
Then i set RadGrid.IsTabStop = true, and RadGridTabStop = false; and on a button click i find 29 elements, that have IsTabStop = true.
I don't know but between Loaded and button click al this controls gets IsTabStop = true.
I found this thread here, and i want to ask, if this is implement in Latest internal build (2010.1.416.1040).
I must say, that i am really excided about TabNavigation.Once.
But it would be nice also if setting RadGrid.IsReadOnly property to false, grid would take care for all of his children.