I am unable to figure out why expandable rows do not work on some of my tables.
message is: You can only add components to first the first instance of the repeatable.
Is this have to do my json data structure or its nested complexity????
I am unable to figure out why expandable rows do not work on some of my tables.
message is: You can only add components to first the first instance of the repeatable.
Is this have to do my json data structure or its nested complexity????
Hi there @Kamlesh_Patel,
Expandable rows work as listViews/repeatables, wherein you modify only the first instance.
As such, for your expandables rows you need to work on the first index of your table. From your screenshot I can see the first column is sorted, which is causing that you're not working on your first instance.
Try removing all sorts from your columns and work on the first row (first instance), and you'll be able to add components.
That worked!!! thank you