|
@@ -165,11 +165,11 @@ public class DynamicDataGrid<TEntity> : DynamicGrid<TEntity>, IDynamicDataGrid w
|
|
|
|
|
|
protected bool IsPaging { get; private set; } = false;
|
|
|
|
|
|
- protected override string FormatRecordCount()
|
|
|
+ protected override string FormatRecordCount(int count)
|
|
|
{
|
|
|
return IsPaging
|
|
|
- ? $"{base.FormatRecordCount()} (loading..)"
|
|
|
- : base.FormatRecordCount();
|
|
|
+ ? $"{base.FormatRecordCount(count)} (loading..)"
|
|
|
+ : base.FormatRecordCount(count);
|
|
|
}
|
|
|
|
|
|
protected override void Reload(Filters<TEntity> criteria, Columns<TEntity> columns, ref SortOrder<TEntity>? sort,
|