BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
dataGrid.SelectionMode = GridSelectionMode.Multiple;
dataGrid.SelectionUnit = GridSelectionUnit.Row;
I'm trying to select some rows of the grid when the user push a button (the grid is on screen). I do this:
dataGrid.SelectedItems.Add( myItemSourceItem );
dataGrid.SelectedItems.Add( myItemSourceItem2 );
Where myItemSourceItem and myItemSourceItem2, are contained in ItemsSource.
The problem is that de rows than not seems to be selected visualy.
However the dataGrid.SelectAll() methods works properly and select all rows as aspected. Am I forgetting something?
Thanks in advance!
private void Button_Click(object sender, RoutedEventArgs e) { var viewModel = sfDataGrid.DataContext as ViewModel; var selectedItem = viewModel.OrderDetails[1]; var secondItem = viewModel.OrderDetails[4]; this.sfDataGrid.SelectedItems.Add(selectedItem); this.sfDataGrid.SelectedItems.Add(secondItem); <syncfusion:SfDataGrid x:Name="sfDataGrid" SelectionUnit="Row" AutoGenerateColumns="False" SelectionMode="Multiple" |