mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 21:47:38 +08:00
1181673273
* feat(module: table): add summary row * feat: add fixed summary cell
58 lines
1.2 KiB
C#
58 lines
1.2 KiB
C#
using AntDesign.TableModels;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public interface ITable
|
|
{
|
|
internal ISelectionColumn Selection { get; set; }
|
|
|
|
internal bool TreeMode { get; }
|
|
|
|
internal int IndentSize { get; }
|
|
|
|
internal string ScrollX { get; }
|
|
|
|
internal string ScrollY { get; }
|
|
|
|
internal int ScrollBarWidth { get; }
|
|
|
|
internal int ExpandIconColumnIndex { get; }
|
|
|
|
internal int TreeExpandIconColumnIndex { get; }
|
|
|
|
internal bool HasExpandTemplate { get; }
|
|
|
|
internal SortDirection[] SortDirections { get; }
|
|
|
|
public TableLocale Locale { get; set; }
|
|
|
|
internal void SelectionChanged();
|
|
|
|
internal void OnExpandChange(int cacheKey);
|
|
|
|
internal void Refresh();
|
|
|
|
internal void ReloadAndInvokeChange();
|
|
|
|
void SetSelection(string[] keys);
|
|
|
|
internal int[] GetSelectedCacheKeys();
|
|
|
|
void ReloadData();
|
|
|
|
QueryModel GetQueryModel();
|
|
|
|
internal void HasFixLeft();
|
|
|
|
internal void HasFixRight();
|
|
|
|
internal void TableLayoutIsFixed();
|
|
|
|
internal void ColumnSorterChange(IFieldColumn column);
|
|
|
|
internal bool RowExpandable(RowData rowData);
|
|
|
|
internal void AddSummaryRow(SummaryRow summaryRow);
|
|
}
|
|
}
|