Replies: 2 comments 3 replies
-
This is how I do it: const parentRowId = row.id.split('.').slice(0, -1).join('.'); // string
const parentRow = instance.rowsById[parentRowId]; // Row || undefined; |
Beta Was this translation helpful? Give feedback.
2 replies
-
I'm getting access to it from the columns in the table. For that I use:
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I was able to get access to the first row of data by doing the following.
This technique could be used to access any of the relevant rows. Was this the intended way of accessing the parent rows from a subRow? Is there a better way that I am not seeing?
Thank you for reading
Beta Was this translation helpful? Give feedback.
All reactions