|
public MainPage() { this.InitializeComponent(); sfgrid.SelectionController = new GridSelectionControllerExt(sfgrid); }
public class GridSelectionControllerExt : GridSelectionController { SfDataGrid dataGrid; public GridSelectionControllerExt(SfDataGrid grid) : base(grid) { dataGrid = grid; }
protected override void ProcessOnGroupChanged(NotifyCollectionChangedEventArgs args) { if (dataGrid.SelectionMode == GridSelectionMode.None) return; else dataGrid.ClearSelections(false); } |
|
S.No |
Page Loading Time with SfDataGrid |
SfDataGrid loading time (SfDataGrid loaded at runtime) |
|
1 |
4-5 secs |
1sec |