Automatically Delete rows
Automatically Delete rows
Hi I have a table listing courses , one of the columns is date, I would like rows where the date is past current date to be deleted or at least hidden, is this possible and how can one go about it
Hi I have a table listing courses , one of the columns is date, I would like rows where the date is past current date to be deleted or at least hidden, is this possible and how can one go about it
Answers
Here are some options:
If you want to allow the user to filter by date range you could use the SearchBuilder extension. See this example.
Your server data query could just return the desired rows.
Use
search.fixed()to filter the date range. This example shows filtering a number range but the same can be done with dates.If you still need help please provide more details of how you want this to work.
Kevin