ant-design-blazor/components/table/ISelectionColumn.cs
Hao Sun 78b10019e4 feat(module: table): add table virtualization (#2143)
* feat(module:table): virtualizing

* turn off virtualizing by default

* add document and demo

* NET_6_0 => NET6_0

* update table selection

* update Table.razor.cs

* update table files

* Update table files

* update table files

* update table files

* update table files

* update table files

* update table files

* update table files

* update Virtualizing.razor

* Update AntDesign.csproj

* Update TableRow.razor

* update files

* Update AntDesign.csproj

* update table files

* update Virtualizing.razor

* add DefaultExpandMaxLevel

* rename Virtualizing to EnableVirtualization

Co-authored-by: James Yeung <shunjiey@hotmail.com>
2022-05-28 13:41:01 +08:00

16 lines
299 B
C#

using System.Collections.Generic;
namespace AntDesign
{
public interface ISelectionColumn : IColumn
{
public bool Disabled { get; }
public string Key { get; }
public IList<ISelectionColumn> RowSelections { get; }
public void StateHasChanged();
}
}