This question is locked. New answers and comments are not allowed.
Hi all,
I have a data set being displayed on a grid view to a user, and I want the data set to be preselected so the user may deselect by clicking each individual row. I'm hoping there's just a property I need to set that allows for this to work. Below is a snippet of what I'm talking about:
I have a data set being displayed on a grid view to a user, and I want the data set to be preselected so the user may deselect by clicking each individual row. I'm hoping there's just a property I need to set that allows for this to work. Below is a snippet of what I'm talking about:
<telerik:RadGridView x:Name="gridToSessions" ItemsSource="{Binding}" AutoGenerateColumns="False" IsFilteringAllowed="False" ShowGroupPanel="False" telerik:StyleManager.Theme="Summer" CanUserSelect="True" SelectionMode="Multiple" <!--Need code here to allow data to be preselected!--> Width="400" Height="300" IsSynchronizedWithCurrentItem="False" EnableRowVirtualization="False" RowIndicatorVisibility="Collapsed" IsReadOnly="True">
Thanks!