improvements, fixes

This commit is contained in:
Loretta 2025-11-26 09:42:16 +01:00
parent baaceacdd3
commit 06c266cc78
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ public abstract class MgGridBase<TSignalRDataSource, TDataItem, TId, TLoggerClie
protected PropertyInfo? GetDataItemPropertyInfo(string propertyName) protected PropertyInfo? GetDataItemPropertyInfo(string propertyName)
=> typeof(TDataItem).GetProperty(propertyName); => typeof(TDataItem).GetProperty(propertyName);
private async Task OnCustomizeEditModel(GridCustomizeEditModelEventArgs e) protected virtual async Task OnCustomizeEditModel(GridCustomizeEditModelEventArgs e)
{ {
var editModel = (e.EditModel as TDataItem)!; var editModel = (e.EditModel as TDataItem)!;