Interface FormSection

A form is composed of several sections of which only one can be shown at once. It is composed of several form fields. The title is shown as tab-text for the section. A description can be supplied which will be shown at the top of the form.

Note that all form fields are stored in a global value object, regardless of section structure.

interface FormSection {
    description?: Description;
    fields: FormField[];
    title: string;
}

Properties

description?: Description

Optional text that describes this section.

fields: FormField[]

List of form fields which are visible when this section is open.

title: string

Title of the section, will be shown as its tab name.

Generated using TypeDoc