Automatically Delete rows

Automatically Delete rows

AdrianQxAdrianQx Posts: 1Questions: 1Answers: 0

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

  • kthorngrenkthorngren Posts: 22,399Questions: 26Answers: 5,145

    Here are some options:

    1. If you want to allow the user to filter by date range you could use the SearchBuilder extension. See this example.

    2. Your server data query could just return the desired rows.

    3. 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

Sign In or Register to comment.