Hi I have an issue with RowClick event on DataGrid, even if my RowClick method is empty the memory usage sky rockets, looks like something causing infinite looped operations od Grid but no idead how to trace it. When I remove RowClick event handler from Grid everything is fine.
RowDoubleClick="() => CRUD(CRUDType.Edit)"
TItem="Employee"
IsLoading="isLoading"
Count="count"
Data="@employees"
ColumnWidth="200px"
AllowColumnPicking="true"
ColumnsPickerAllowFiltering="true"
AllowColumnReorder="true"
AllowColumnResize="true"
AllowFiltering="true"
AllowMultiColumnSorting="true"
@bind-Settings="@Settings"
SelectionMode="Radzen.DataGridSelectionMode.Multiple"
AllowRowSelectOnRowClick="false"
RowClick="RowClick"
@bind-Value="@selectedRecords">
async Task RowClick(DataGridRowMouseEventArgs<Employee> args)
{
}