You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes table data may be a small and in that case we dont want to make request to server again just for sorting for a few rows.
So I think it would be good option to select sorting side when use TableDataProvider.
Something like this:
pubenumSortingSide{Client,// local sortingServer,// server sorting}#[async_trait(?Send)]implTableDataProvider<T>forMyDataProvider{typeColumnName = MyColumnName;typeSortingSide = SortingSide::Client;
...
}
The text was updated successfully, but these errors were encountered:
Sometimes table data may be a small and in that case we dont want to make request to server again just for sorting for a few rows.
So I think it would be good option to select sorting side when use
TableDataProvider
.Something like this:
The text was updated successfully, but these errors were encountered: