mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 21:47:38 +08:00
080d4dda43
* 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>
23 lines
448 B
C#
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();
|
|
}
|
|
}
|