This is a migrated thread and some comments may be shown as answers.

IsTabStop issue

2 Answers 92 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Edo Cof
Top achievements
Rank 1
Edo Cof asked on 18 Apr 2010, 02:32 PM
I have the next code in OnLoaded event.
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.

2 Answers, 1 is accepted

Sort by
0
Edo Cof
Top achievements
Rank 1
answered on 18 Apr 2010, 02:33 PM

image1 is screenshot for items that has IsTabstop = true. My grid has 7 rows. (i think)
0
Nedyalko Nikolov
Telerik team
answered on 19 Apr 2010, 02:32 PM
Hello Matjaz Cof,

Unfortunately I cannot commit with any specific date or release when TabNavigation.Once will be introduced.

Code like "RadGridView.IsTabStop = false" should work correctly with Silverlight 4. Please try your scenario with our SL 4 version which will be released as part of our 2010.Q1.SP1 (due in a couple of days).

By the way I think that you misspelled "RadGridView.IsTabStop" with "RadGridView.IsReadOnly". If not any column will override IsReadOnly which comes from the parent grid, so if you set RadGridView as read only but column is set explicitly as not read only - user will be able to edit cells in this column.

Greetings,
Nedyalko Nikolov
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
GridView
Asked by
Edo Cof
Top achievements
Rank 1
Answers by
Edo Cof
Top achievements
Rank 1
Nedyalko Nikolov
Telerik team
Share this question
or