Hi,
I want to implement nested rows in my application. My requirement is,
All the cells in the parent row should be editable. So I need to get the row index and column index in the afterChange listener to update my reference object.
Also all the child rows should be read only and need to have a different color.
When I try to implement this, The parent row and child rows index are changing when ever I expand and collapse the child. Because of this I couldn’t set the read only exactly to child rows.
Also when I edit the parent row cells while the child is in expand mode, I am getting different index.
How to get the fixed row index for parent and child in both the expand and collapse mode. Also do we have any option to set the custom index for my case?
Will the IndexMapper resolve this issue? Can you please give me sample code for this if any?