The main form can include many fields and other form components. Unlike canvas apps, you cannot add a control anywhere; there is a layout to the form that you must observe.
The main form is structured like so:
- Header: Contains up to four fields. These are usually important fields that the user should see if the form scrolls. Fields in the header can be edited using the flyout control.Â
- Body: Contains fields and other controls. There is a hierarchy for the layout of the body:
- Tabs: The body has at least one tab. A tab has a label that is displayed above the tab. A tab's layout can have 1, 2, or 3 columns. Tabs can be hidden.
- Sections: Each column of a tab must have at least one section. Sections can only be contained within a tab. A section has a label that is displayed above the section. Sections can have up to four columns. Sections can be hidden. Sections are a way of grouping similar fields together.Â
- Controls: Controls...