- 
                Notifications
    You must be signed in to change notification settings 
- Fork 29
986416 - Vol3, SP1 2025 UG content changes for ImageEditor team controls #3726
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: development
Are you sure you want to change the base?
Changes from 3 commits
c1acfb3
              b02e659
              e3fc3ba
              159082c
              70d0156
              6b7cbcc
              d9ef01b
              File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| --- | ||
| layout: post | ||
| title: Sorting in .NET MAUI Kanban control | Syncfusion® | ||
| description: Learn here all about Sorting support in Syncfusion® .NET MAUI Kanban (SfKanban) control and more. | ||
| platform: maui | ||
| control: Kanban (SfKanban) | ||
| documentation: ug | ||
| keywords: .net maui Kanban sorting, sfKanban sorting in .net maui, .net maui Kanban sorting support. | ||
| --- | ||
|  | ||
| # Card Item Sorting in .NET MAUI Kanban (SfKanban) | ||
|  | ||
| The Kanban control supports customizable card sorting within columns based on specific data fields such as priority, due date, or status. Sorting can be applied programmatically and updated dynamically at runtime using following properties | ||
|  | ||
| * `SortingMappingPath` - Used to map the sorting field to a property name in the `KanbanModel` or `CustomModel`. The default value is `string.Empty`, in which case the cards will not be sorted. | ||
| * `SortingOrder` - Used to define the direction of cards sorting within each column. | ||
| * `Ascending` - Cards with lower values appear first. | ||
| * `Descending` - Cards with higher values appear first. | ||
|  | ||
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add note: This property is applicable only when a valid value is assigned to  There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note added sir. | ||
| N> This property is applicable only when a valid value is assigned to SortingMappingPath. | ||
|  | ||
| ## Sorting Behavior in DragEnd Event | ||
|          | ||
|  | ||
| The `DragEnd` event in the `Kanban` control supports three sorting approaches: | ||
|          | ||
|  | ||
| * **Automatic Sorting**: Call RefreshKanbanColumn() to sort the target column based on predefined sorting properties after a card is dropped. | ||
| * **Custom Sorting**: Use e.TargetColumn.Items to access and sort the cards manually using your own logic. | ||
| * **No Sorting**: If no sorting logic is applied in the DragEnd event, the dropped card remains in its new position without reordering the column. | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Highlight key words
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated sir.