mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-06 05:57:39 +08:00
4065869806
* feat: add table filter * add filter buttons * fix filter menu * make filter work * support multiple filters * delete the old files * support single select
26 lines
537 B
C#
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();
|
|
}
|
|
}
|