I am building a ‘returns’ system. Once the refund is processed on our system i want to then “complete” this return and move it our the list. But i still want it to show in the database? Can you help?
Hey Robert,
If you’re using a dataset to populate the table or repeater, you can have a field in your collection that signifies if an item is completed and use a filter on the dataset to filter out those items.
If you’re using code to populate the table or repeater, you can can use standard JavaScript filtering functions to filter the array of data before you use it to set the table’s row or the repeater’s data.
So i have a button i have created, how can i make this button add a value to the completed field in the database once clicked.
You can use the update() function.