6 Answers, 1 is accepted
0
Accepted
Hi dennis,
Currently RadGridView does not support cells selection - we will do our best to provide this for Q2.
Best wishes,
Vlad
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Currently RadGridView does not support cells selection - we will do our best to provide this for Q2.
Best wishes,
Vlad
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
Dario
Top achievements
Rank 1
answered on 21 Aug 2009, 09:43 AM
Hi Vlad,
since Q2 is released, are there any updates on this?
0
Hi Dario ,
We still do not have cell selection per se, but we if you are only interested in selecting just a single cell you could use our CurrentCell property. When you click on a certain cell it automatically becomes current, which could be used to simulate cell selection.
In your first message you mentioned that you do not want to select the whole row - you could easily turn off the selection visual state for all rows by modifying the original row template.
With some XAML code you might be able to achive the desired functionality and appearance.
Sincerely yours,
Milan
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
We still do not have cell selection per se, but we if you are only interested in selecting just a single cell you could use our CurrentCell property. When you click on a certain cell it automatically becomes current, which could be used to simulate cell selection.
In your first message you mentioned that you do not want to select the whole row - you could easily turn off the selection visual state for all rows by modifying the original row template.
With some XAML code you might be able to achive the desired functionality and appearance.
Sincerely yours,
Milan
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
Nick
Top achievements
Rank 1
answered on 04 Oct 2012, 09:58 AM
Hi Guys,
I think you underestimate how many people want this, we've been requiring this for at least a year now.
So if it's worth anything I'd like to add onto this request and ask please can this be done. Please Please Please.
I think you underestimate how many people want this, we've been requiring this for at least a year now.
So if it's worth anything I'd like to add onto this request and ask please can this be done. Please Please Please.
0
Hello,
Vlad
the Telerik team
This thread is very very old. Actually we have such feature from almost 2 years:
http://demos.telerik.com/silverlight/#GridView/Selection/CellSelection
Vlad
the Telerik team
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.
0
Nick
Top achievements
Rank 1
answered on 04 Oct 2012, 11:04 AM
Not really it's something I'd like to do from the code, e.g.
int row = 3;
int col = 4;
SelectedCell = radgridview.Cell(row, col);
regards