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
There are several ways of doing it, but the first step would be to store an identifier for the row you want to keep visible. Now in the gridRowLayout's showWhen you can add a condition which is something like this
a!gridRowLayout( showWhen: local!selectedRowIndex=fv!index )
Thank you Harshit Bumb (Appyzie) , It solved my problem.Appreciate your help!