Hi!
I'm using a SfDataGrid control with this configuration
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!