I have the following code in my RowActivated EventHandler
I have SelectionUnit="FullRow" and SelectionMode="Extended"
The problem is that the rows are highlighted for a second, then only the row I double clicked on remains highlighted. Is there any way to do this?
private
void
dgv_RowActivated(
object
sender, Telerik.Windows.Controls.GridView.RowEventArgs e)
{
dgv.SelectedItems.Clear();
foreach
(var t
in
collection)
{
dgv.SelectedItems.Add(t);
}
}
I have SelectionUnit="FullRow" and SelectionMode="Extended"
The problem is that the rows are highlighted for a second, then only the row I double clicked on remains highlighted. Is there any way to do this?