This question is locked. New answers and comments are not allowed.
Hi,
I am trying to select and copy all the grid rows, but it does not work. I only get one row copied. Any idea how to solve this? See my code below
I am trying to select and copy all the grid rows, but it does not work. I only get one row copied. Any idea how to solve this? See my code below
GridViewSessions.ItemsSource = _itemsSource; if (e.Entities.Count() > 25) { GridViewSessions.SelectionMode = System.Windows.Controls.SelectionMode.Multiple; GridViewSessions.SelectAll(); var copyCommand = RadGridViewCommands.Copy as RoutedUICommand; copyCommand.Execute(null, GridViewSessions); }