mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 21:47:38 +08:00
080d4dda43
* feat: table column sort add sortway support singleness or mutiple * fix: error method name * add sort directions * delete useless property Co-authored-by: ElderJames <shunjiey@hotmail.com>
52 lines
1.1 KiB
C#
52 lines
1.1 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 Refresh();
|
|
|
|
internal void ReloadAndInvokeChange();
|
|
|
|
void SetSelection(string[] keys);
|
|
|
|
internal int[] GetSelectedCacheKeys();
|
|
|
|
void ReloadData();
|
|
|
|
internal void HasFixLeft();
|
|
|
|
internal void HasFixRight();
|
|
|
|
internal void TableLayoutIsFixed();
|
|
|
|
internal void ColumnSorterChange(IFieldColumn column);
|
|
|
|
internal bool RowExpandable(RowData rowData);
|
|
}
|
|
}
|