Hey,
we currently have the problem to use the SelectionMode because if SelectonMode is Single we got the following exception:
Syncfusion SfDatagrid 16.2.0.42
the code behind:
_dataGrid = new SfDataGrid();
_dataGrid.HorizontalOptions = LayoutOptions.Fill;
_dataGrid.VerticalOptions = LayoutOptions.FillAndExpand;
_dataGrid.BackgroundColor = Color.White;
_dataGrid.ShowRowHeader = true;
_dataGrid.AutoGenerateColumns = true;
_dataGrid.ColumnSizer = ColumnSizer.LastColumnFill;
// _dataGrid.SelectionChanged += _dataGrid_SelectionChanged;
_dataGrid.SelectionMode = SelectionMode.Single;
_dataGrid.AllowPullToRefresh = true;
_dataGrid.PullToRefreshCommand = new Command(UpdateData);
_dataGrid.ItemsSource = _boats;
Best regards,
Thomas