This repository has been archived by the owner on Mar 27, 2023. It is now read-only.
Replies: 1 comment
-
Getting items on internal state changes has been a repeated request but its a challenge and would require pretty extensive rewriting of the internals due to how they are composed. As we move towards the Core grid element this will not be an issue for applications but it also means we won't be investing in these types of changes for complex components. However, we are not there yet with the core grid so:
In both cases If you can supply an example we can take a look at the code and try to give better advice. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi! I have a pagination table, I need to select a row programmatically, but because of the sorting, I do not know on which page the desired row is located. Then I try to sort the input array and find the desired page with a special function, however, the results of my sorting do not always match the sorting inside the datagrid and the page is incorrect. I tried using
items._filtered
, but this is a private field that does not always contain up-to-date data. I tried to take the sorting functionitems._sort
is also not always relevant. It would be great to be able to get a list of all the elements after sorting and filtering from the grid, or for the grid to change the page on its own to highlight the selected row.Beta Was this translation helpful? Give feedback.
All reactions