Open modal with clicked row not selected row

Have a table with multi-select enabled. If I click on a row, I want to open a modal and the modal to reference the row that was clicked even if there are other rows selected.

For example, if rows 1, 2, 3, and selected, but I click on row 4, I want row 4 to open. I would like to do this, without de-selecting rows 1, 2, and 3.

Hey @mwh22
I built out a table with multiselect enabled, added an action to the table that runs a js query that is just modal.open() and I'm not experiencing the same issue you're referencing

Shared with CloudApp

Thanks @DavidD!! Interesting, would you mind sharing js query? I experimented with using table.selectedCell.index and that actually seems to be working now. But very curious your approach.

1 Like

here's all it is
image
just {{modal1.open()}}

1 Like

Gotcha, thanks!