Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

By default, the list will display in the order that the resource submissions were created, with the most recent submission at the top. Many times, you want to sort the list in ascending or descending order. This can be accomplished by adding a filter query of "sort". For example, if you would like to sort your list of department approvers in ascending order, the Filter Query may look like "sort=data.approver". Sorting in descending order requires a minus sign after the equals character. So to sort the department approver list in descending order would require a Filter Query of "sort=-data.approver". Chaining multiple fields to sort by is also possible. For example, if you would like to sort a list based on the department in ascending order and approver in descending order, your Filter Query may look like "sort=data.department,-data.approver".

If you would like to use multiple Filter Queries, such as displaying approvers based on the selected department as well as sort the list in alphabetical order, your Filter Query may look something like "data.department={{data.department}}&sort=data.approver".

...