Hi there,
I have a list with Name and Age pulled from a data resource into a page variable list of objects.
How can I delete a subset of the list, say everyone with an age < 18, in my database? Is that even possible?
Thank you and best regards,
Joerg
Mari
March 1, 2021, 9:28am
#2
Hi, you can remove multiple records by creating a loop, a similar question has been answered in the thread below. In your case use the SELECT function to pick out the items where item.age < ageLimit
Hello,
I had a look through your video on creating a todo app.
[AppGyver - Creating a No-code Todo App]
Now that I have a bunch of records, I’d like to delete the ones marked as “done”. How can this be achieved? I have created a “Delete Done Tasks” button and I’m trying to utilize the “Delete Record” logic.
I have troubles deleting even a single record without hardcoding the ID as I’m not sure how to find the correct ID corresponding to the task name. What would happen if there …