Skip to content

GridField

With the 'GridField' section you will be able to address a grid-column to a entity property or nested property.

Fields

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

Property

The name of the property from UiStructure entity that will be displayed. The value for property include all properties from entity and nested properties.

For nested properties use the '.' notation, this way you can indicate the child entity properties of current entity to be displayed.

Requirements Rules:

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

Example:

1
2
3
4
- Property: My_Property_1
...
- Property: Child_Entity_1.Nested_Property_1 # this sample will render the 'Nested_Property_1' from 'Child_Entity_1' that is a child for UiStructure entity.
...


Title

The label that should be rendered as a column header for property. Defaults to the property name if not informed.

Example:

1
2
3
4
- Property: My_Property_1
  Title: My property *1
- Property: Child_Entity_1.Nested_Property_1
  Title: My nested property


Back to top