2020-07-10 17:57:20 +08:00
|
|
|
|
namespace AntDesign
|
2020-05-30 01:46:41 +08:00
|
|
|
|
{
|
|
|
|
|
public interface ITable
|
|
|
|
|
{
|
2020-07-10 17:57:20 +08:00
|
|
|
|
internal ISelectionColumn Selection { get; set; }
|
2020-06-19 23:06:33 +08:00
|
|
|
|
|
2020-09-07 22:46:50 +08:00
|
|
|
|
public TableLocale Locale { get; set; }
|
|
|
|
|
|
2020-07-10 17:57:20 +08:00
|
|
|
|
internal void SelectionChanged();
|
2020-06-05 16:06:23 +08:00
|
|
|
|
|
2020-06-19 23:06:33 +08:00
|
|
|
|
internal void Refresh();
|
2020-06-05 16:06:23 +08:00
|
|
|
|
|
2020-07-08 16:12:49 +08:00
|
|
|
|
internal void ReloadAndInvokeChange();
|
|
|
|
|
|
2020-06-19 23:06:33 +08:00
|
|
|
|
void SetSelection(string[] keys);
|
2020-07-08 16:12:49 +08:00
|
|
|
|
|
2020-08-01 23:45:48 +08:00
|
|
|
|
internal int[] GetSelectedCacheKeys();
|
2020-07-10 17:57:20 +08:00
|
|
|
|
|
2020-07-08 16:12:49 +08:00
|
|
|
|
void ReloadData();
|
2020-05-30 01:46:41 +08:00
|
|
|
|
}
|
|
|
|
|
}
|