Skip to content

GridQueryOrderField

With the 'GridQueryOrderField' section you will be able to set the properties that should be use to order the grid result and for each property a order type.

Fields

A grid-query-order-field contains the following fields to be defined:

Property

The name of the property from UiStructure entity that will be used for sort.

Requirements Rules:

  • Is Required;
  • Must be a valid property for UiStructure entity

Example:

1
2
- Property: My_Property_1
...


Type

The order type that should be applied when retrieving data from backend. Defaults to 'asc' if not informed.

Possible types are:

  • asc: Ascending;
  • desc: Descending

Requirements Rules:

  • Must be an Allowed valid type, according to the types informed above

Example:

1
2
- Property: My_Property_1
  Type: asc


Back to top