grid
Overview
The grid UI component gives developers more control over the layout of UI components in a view. This is useful when there is a need to customize the width of UI components respective to other components on the view (where previously columns kept each component’s width equal). grid could also be used to layout components in a way that is similar to layout to icons on a phone’s homescreen. Another use case is to keep more content visible on the screen, where previously column content overflowed and became scrollable.
A grid contains cells to specify the size and position of UI components:
Basic Example

Have a look at some additional examples here:
📖grid ExamplesLimitations
Nesting a
gridinside anobject-repeatis not currently supported.
Standard Attributes
None
Advanced Attributes
column-count
column-countOptional
Type: integer
Default: Is automatically determined based on the minimum allowed column width.
Specify the number of columns that the grid will generate.

column-min-width
column-min-widthOptional
Type: integer
Default: 250 px
Specify the minimum allowed width (in pixels) for the grid’s columns.

column-order
column-orderOptional
Type: left-to-right| right-to-left
Default: left-to-right
Specify the order of the grid's columns.

show-if and hide-if
show-ifhide-ifshow-if and hide-ifComponent Methods
None
Last updated