I'm trying to set alignment for sectionItem but no matter what I set it to, it doesn't seem to be re-aligning the items being displayed under it.
Code:
<DynamicForm width="500">
<fields>
<field defaultValue="Item" type="section" sectionExpanded="true" align="right">
<itemIds>
<itemId>itemName</itemId>
<itemId>description</itemId>
<itemId>price</itemId>
</itemIds>
</field>
<field name="itemName" type="text" title="Item"/>
<field name="description" type="textArea" title="Description"/>
<field name="price" type="float" title="Price" defaultValue="low"/>
</fields>
</DynamicForm>
Comment