column
Overview
The columns UI component can contain one or more columns.
Standard Attributes
None
Advanced Attributes
align
alignOptional
Type: center | fullwidth
Default: fullwidth
Alignment limitation
align set to center is only relevant when using a single column, on a tablet or a desktop device.
<columns>
<column align="center">
<heading>Add new part</heading>
<text-input bind="part.name" required="true" />
<text-input bind="part.serial" required="true"/>
<text-input bind="part.description" required="false" />
<single-choice-radio label="Condition" bind="part.condition" required="true" />
<button-group>
<button label="Cancel" on-press="$:closeDialog()" validate="false" />
<button label="Submit" on-press="$:closeDialog()" validate="true" style="solid"/>
</button-group>
</column>
</columns>
show-if and hide-if
show-ifhide-ifshow-if and hide-ifLast updated
