You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FluentDataGrid has Items property set to IQueryable returned by EF Core context. SelectMode is DataGridSelectMode.Single.
I select one row in the grid, modify one value in the sql server table (using EF Core context) and call grid's RefreshDataAsync. FluentDataGrid shows the modified value but the selection is gone.
How to restore selection? How to select row that was previously selected after calling RefreshDataAsync or how to force RefreshDataAsync not to change selection if after refresh selected record still exists?
I can't use @bind-SelectedItems because items are only inside FluentDataGrid.
OnSelect/Property properties also does not help. After RefreshDataAsync Grid calls OnSelect with info that the record is now not selected.
The text was updated successfully, but these errors were encountered:
FluentDataGrid has Items property set to IQueryable returned by EF Core context. SelectMode is DataGridSelectMode.Single.
I select one row in the grid, modify one value in the sql server table (using EF Core context) and call grid's RefreshDataAsync. FluentDataGrid shows the modified value but the selection is gone.
How to restore selection? How to select row that was previously selected after calling RefreshDataAsync or how to force RefreshDataAsync not to change selection if after refresh selected record still exists?
I can't use @bind-SelectedItems because items are only inside FluentDataGrid.
OnSelect/Property properties also does not help. After RefreshDataAsync Grid calls OnSelect with info that the record is now not selected.
The text was updated successfully, but these errors were encountered: