Lets you work with a form group dynamically on the form page. Provides programmatic access to group properties and allows changing them.
// Hide myGroup1 if current status is 'settlement'const { s_status } = tisa.form.field;const { g_myGroup1 } = tisa.form.group;g_myGroup1.hidden = s_status.value === "settlement" Copy
// Hide myGroup1 if current status is 'settlement'const { s_status } = tisa.form.field;const { g_myGroup1 } = tisa.form.group;g_myGroup1.hidden = s_status.value === "settlement"
Collapses the group in the form when set to true. The group header remains visible and the user can expand it by clicking.
true
FormConfig
Hides the group in the form when set to true.
Readonly
Unique group identifier.
Display name that is shown in the UI.
Lets you work with a form group dynamically on the form page. Provides programmatic access to group properties and allows changing them.
Example