Hello,
I’m trying to do something to delete a row based on the value (false or true in my case).
(Deleting a user’s row after they delete their account).
The action → Delet row seems to not be able to do it in my case.
I’ve read several articles about deleting a row but I haven’t really found how to apply it.
i’have found some javascript with row id and checkMatch but i’m not sure how to use it
One way to do this would be to have a button that first changes a property in their profile, maybe something like a column that saves “delete” as the value if they press the button. Do this with a set column.
Then a second button (you could do this with a confirmation like “Are you sure?”) the action would have a condition to check the value of the “delete” column mentioned above and if it meets the condition you delete the row.
Oh, you can’t do it for a list of records, you would need to do this each row at a time. If you want to delete a number of items you would need to do it from your data source or in the data editor.