ant-design-blazor/components/table/IFieldColumn.cs
James Yeung 4065869806 feat(module: table): add filters (#1178)
* feat: add table filter

* add filter buttons

* fix filter menu

* make filter work

* support multiple filters

* delete the old files

* support single select
2021-02-27 23:55:48 +08:00

26 lines
537 B
C#

using System.Collections.Generic;
using AntDesign.TableModels;
using Microsoft.AspNetCore.Components;
namespace AntDesign
{
public interface IFieldColumn : IColumn
{
public string DisplayName { get; }
public string FieldName { get; }
public string Format { get; }
public bool Sortable { get; }
public int SorterMultiple { get; }
public ITableSortModel SortModel { get; }
public ITableFilterModel FilterModel { get; }
internal void ClearSorter();
}
}