Disable client side sorting #1763
Replies: 1 comment 1 reply
-
I got an answer from SlavCo that it's not possibel at the moment.
I'm a little bit confused, because for me it seems a default usecase for many projects: Load data based on query parameters and display it paged. Then client side sorting is an additional opt in feature, which can be added for some edge cases, were it's possible to deliver all rows at once. Implementing it should be very easy... just skip the sorting based on some additional flag. It seems I need to raise an feature request. |
Beta Was this translation helpful? Give feedback.
-
We are using the DataTable component to display paginated and sorted data.
To sort columns we make a column sortable and update the data on the sort event
@sort="onColumnSort"
.But how can we disable the client side sorting? The onColumnSort triggers an Update and fetches the new data, already sorted by the SQL query.
Is there any way to use the sort indicator only as indicator and not with it's client side sorting functionality - what did I missed?
The problem is, that the client sorts the data in other ways than the database query. For example, the database can use the ordinal of an enum for the sort. The client can only use the text value. In case of an error state label, this is not intended. In addition loading the table data triggers the sorting after the data is loaded and displayed. So the user just sees the data, sorted by the db, for a half second, befor it'S get sorted by the DataTable.
Beta Was this translation helpful? Give feedback.
All reactions