I have an interactive grid where you can select rows to do somethind with them. Since the data comes from a view you can't easialy delete via the delete rows button. I want to do somethind like
When you click "Save" Button:
1. get rows that are "marked" for deletion
2. delete rows manually
is there a good way the get this rows with javascript? I know that you could select them via the class "is-deleted" but then I wont get the hidden primary key.
Thanks in advance.