Hi, its possible with the API get all cells values (full row) of a seleted row?.
Thanks!
Hi!
Please take a look at getCell and getSelectedCell API calls.
Does it help?
Regards,
Tanya
Hi Tanya, yes i saw these methods but i need to get the values of all cells of a selected row and not only a specific cell. Thanks.
Every element on a grid has property data-r which is a number of row and data-c is number of column.
So I can recommend the following approach: document.querySelectorAll('div[data-r="3"]')
Does it work for you?