container

Includes a container in the query editor. A container can be used to group related fields and control their layout.

Syntax
<container
    style="row"
    column-ratio="text"?
  >
  <field/>+
  <component/>*
</container>
Attributes
style="row"

The fields in the container will be arranged horizontally in a single row. This is currently the only available container style.

column-ratio="text" (optional)

Specifies the horizontal space to be allotted to each of the fields in the container. If there are three fields in the container then a value of 1:1:2 will allocated 25% of the available width to the first two fields, and 50% to the third.

If this attribute is omitted, then the available horizontal space is divided equally between the fields in the container.