Welcome to the WPF feedback portal. We’re happy you’re here! If you have feedback on how to improve the WPF, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

3
Votes

Currently the only way to specify the sorting of columns/cards/swimlanes in the kanban board is to sort the items before binding to ItemsSource:


kanbanModels = kanbanModels.OrderBy(x => x.Category)
        .ThenBy(x => x.Assignee)
        .ThenBy(x => x.Title)
        .ToList();

I need the following sorting functions:
  1. Get current row&card index of a given card (similar like in KanbanDragEndEventArgs). KanbanColumn.Cards.IndexOf(item) is returning random values when using swimlanes.
  2. Set index of a card within column/swimlane group - KanbanColumn.Card.Move() is not working when using swimlanes
  3. Set sorting of swimlane groups