Hi - I have made a change that has disabled the CellSelecting event, but i cant figure our which one. Please see the grid-code in version 20.1.0.51 and see if you can help me re-introduce the events?
/Søren
<SfGrid @ref="Grid"
DataSource="@gridData"
ShowColumnChooser="true"
Height="480"
Toolbar="toolbarItemsList"
AllowReordering="true"
AllowResizing="true"
AllowPaging="true"
AllowFiltering="@searchbarEnable"
AllowExcelExport="true"
AllowSorting="true"
GridLines="GridLine.Both"
EnableAutoFill="true"
AllowSelection="isMultiSelectAllow"
EnablePersistence="true">
<GridSelectionSettings Mode="Syncfusion.Blazor.Grids.SelectionMode.Cell"></GridSelectionSettings>
<GridEditSettings AllowEditing="true" ShowConfirmDialog="false"></GridEditSettings>
<GridEvents OnToolbarClick="@ToolbarClickHandler"
OnActionBegin="@ActionBeginHandlerAsync"
CellSelecting="@CellSelectionHandler"
CellSelected="@CellSelectHandler"
OnCellSave="@CellSavehandler"
OnCellEdit="CellEditHandler"
QueryCellInfo="@CustomizeCell"
OnBatchSave="@BatchSave"
OnLoad="@SetDashboard"
TValue="ProductData"></GridEvents>
<GridFilterSettings Mode="FilterBarMode.Immediate" ShowFilterBarStatus="false"></GridFilterSettings>
<GridPageSettings PageCount="@pageCount" PageSize="@pageSize" CurrentPage="@currentPage" PageSizes="@pageSizes" />