Class KanbanSortSettings
Defines the Kanban board sort settings and their properties such as direction, sort order by and fields.
Inherited Members
Namespace: Syncfusion.Blazor.Kanban
Assembly: Syncfusion.Blazor.dll
Syntax
public class KanbanSortSettings : SfDataBoundComponent
Constructors
KanbanSortSettings()
Declaration
public KanbanSortSettings()
Properties
ChildContent
Defines the child content.
Declaration
public RenderFragment ChildContent { get; set; }
Property Value
Type |
---|
Microsoft.AspNetCore.Components.RenderFragment |
Direction
Sort the cards. The possible values are: Ascending Descending.
Declaration
public SortDirection Direction { get; set; }
Property Value
Type |
---|
SortDirection |
Field
Defines the sort field.
Declaration
public string Field { get; set; }
Property Value
Type |
---|
System.String |
SortBy
Sort the cards. The possible values are: DataSourceOrder Index Custom.
Declaration
public SortOrderBy SortBy { get; set; }
Property Value
Type |
---|
SortOrderBy |
Methods
OnInitializedAsync()
Method invoked when the component is ready to start.
Declaration
protected override Task OnInitializedAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing any asynchronous operation. |
Overrides
OnParametersSetAsync()
Method invoked when the component has received parameters from its parent.
Declaration
protected override Task OnParametersSetAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing any asynchronous operation. |