Class SortOrderBy
Determines the order in which tasks are arranged on the Kanban board.
Inheritance
Namespace: Syncfusion.Blazor.Kanban
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class SortOrderBy : Enum
Remarks
SortOrderBy specifies the sorting criterion that dictates the sequencing of tasks.
Fields
Custom
Orders tasks based on custom logic defined by the user.
Declaration
public const SortOrderBy Custom
Field Value
Type | Description |
---|---|
SortOrderBy | Sorting adheres to user-defined criteria beyond default ordering capabilities. |
Remarks
Utilize when unique business logic or requirements dictate task arrangement.
DataSourceOrder
Orders tasks according to their original sequence in the data source.
Declaration
public const SortOrderBy DataSourceOrder
Field Value
Type | Description |
---|---|
SortOrderBy | Sorting relies on the inherent order found in the data's structure. |
Remarks
Use when maintaining the natural data organization is essential for task flow.
Index
Orders tasks based on their relative index positions.
Declaration
public const SortOrderBy Index
Field Value
Type | Description |
---|---|
SortOrderBy | Sorting depends on internal task index numbers. |
Remarks
Useful for scenarios requiring task arrangement based on specific positional criteria.