mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
715149e21f
* feat(module: table): add sorter * feat: add sorter tooltip * feat: add table change event
21 lines
405 B
C#
21 lines
405 B
C#
using System.Threading.Tasks;
|
|
using AntDesign.TableModels;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public interface ITable
|
|
{
|
|
internal ISelectionColumn HeaderSelection { get; set; }
|
|
|
|
internal void SelectionChanged(int[] checkedIndex);
|
|
|
|
internal void Refresh();
|
|
|
|
internal void ReloadAndInvokeChange();
|
|
|
|
void SetSelection(string[] keys);
|
|
|
|
void ReloadData();
|
|
}
|
|
}
|