Axelor Doc

The views form

A form view is defined by the tag <form> .

The syntax is as follows:

<form
    title="formTitle"
    name="formName"
    model="formModel"
    cols="integer"
    colWidths="colsWidths"
    onNew="actions_on_new"
    onLoad="actions_on_load"
    onSave="actions_on_save"
>
    <toolbar ... [0..1]/>
    <field ... [0..*] />
    <group ... [0..*] />
    <notebook ... [0..*] />
    <break ... [0..*] />
    <spacer ... [0..*] />
    <separator ... [0..*] />
    <label ... [0..*] />
    <button ... [0..*] />
</form>