Replies: 2 comments 5 replies
-
We've decided to stay close to the QuickGrid code (which is being productized for .NET 8) and not include the changes described above. |
Beta Was this translation helpful? Give feedback.
3 replies
-
I think I've come up with a good solutionn for this... a right click on the sorted colum header button to clear the sort and restore it to the default/start situation. I'll create a PR for this. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
🙋 Feature proposal
We would like to extend DataGrid sort capabilities with new features
Currently, the user can only sort by a single column. we add the capability to DataGrid so that a user can sort on multiple columns, where every column can be sorted ascending or descending. The order the user selects the columns in determines the sort order.
TemplateColumn
without the need of extra codeThe
TemplateColumn
is a widely used column and we think an embedded sorting feature would be very useful. We want to prevent a developer needs to add code to add sort capability for every column in the application.💁 Possible Solution
1- a property to define sort property of model.
2- a function that can apply sort (or call infrastructure sort provider)
ColumnOptions
to form a new embedded component. We can design it to look like Excel (or something alike).GridSort
)Beta Was this translation helpful? Give feedback.
All reactions