I use Grid component with 1 column and have a lot of information in such column in each row. Also, I use Grid Details and show specific form there. After the user action in the form, I need to refresh/re-render the Grid row in order to reflect the most recent changes. Please advise how to let the Grid know in order to refresh/re-render the specific row.
Asked
Active
Viewed 232 times
0
-
4Have you tried `getDataProvider().refreshItem(item)` ? – cfrick Sep 03 '22 at 09:53
-
Thanks, yes I tried. The problem with this method is that the details windows also close. – alexanoid Sep 04 '22 at 09:42
-
You can programmatically open the details row with `grid.setDetailsVisible(item ,true);` – ollitietavainen Sep 05 '22 at 05:46