Posted 26 Dec 2012 Link to this post
You can set the IsSynchronisedWithCurrentItem property to false. Hope this helps!
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.
You can set the IsSynchronisedWithCurrentItem to true after the grid has been loaded which should restore the behavior.
You have to set the IsSynchronisedWithCurrentItem property to false, and manually change the Current item on SelectionChanged afterwards.
void
clubsGrid_SelectionChanged(
object
sender, SelectionChangeEventArgs e)
{
var grid = sender
as
RadGridView;
grid.CurrentItem = grid.SelectedItem;
}
Posted 27 Dec 2012 Link to this post
I am attaching an example of how you can achieve the behavior. Hope it helps!