Hi, I'm very new to re-tool and I seem to be stuck on a simple task. I have a table that allows for multiple selection of rows. One of the columns in my table is of type modal
. When the modal opens, I want to display that particular row's description. The problem is that table.selectedRow.data
is an array because of the multi-select option and I cannot access {{self}} from the modal. What I am looking for is how to access the value of the cell I clicked on so I can filter the data array and grab a property's value for that specific row, something like the index for the clicked cell table.selectedCell
returns the first record in the list when multiple rows are selected.
Thanks!