ant-design-blazor/components/table/IFieldColumn.cs
cqgis 080d4dda43 feat(module: table): add sort directions and default sort order (#778)
* feat: table  column sort add sortway support singleness or mutiple

* fix: error method name

* add sort directions

* delete useless property

Co-authored-by: ElderJames <shunjiey@hotmail.com>
2021-01-24 13:52:57 +08:00

23 lines
448 B
C#

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; }
internal void ClearSorter();
}
}