Hi @all,
Can anybody help me in figuring out how we can apply show when condition for particular rows in an Editable Grid.
My use case is to show all the rows initially but when we select any row, rest of the rows hide out and only that row remains in the grid.
I am attaching an image of the interface of my editable grid:
Highly appreciate your efforts.
Discussion posts and replies are publicly visible
In an editable grid, you create rows using a foreach and a!gridRowLayout(). Now, based on conditions, you can either skip the row entirely, or set showWhen of that row to false.
Thanks Stefan Helzle for your help, it worked!