This extends the Twister and mixes in
the LayoutMixin to provide a collapsible section
into which form controls can be placed.
- Copyright:
- Copyright (C) 2005-2020 Alfresco Software Limited
- License:
- GNU Lesser General Public License, see: Open Source Licensing
- Source:
Example
{
name: "alfresco/forms/Form",
config: {
okButtonPublishTopic: "SAVE_FORM",
widgets: [
{
name: "alfresco/forms/CollapsibleSection",
config: {
label: "Section"
widgets: [
{
name: "alfresco/forms/controls/TextBox",
config: {
fieldId: "TB1",
name: "tb1",
label: "Text box"
}
}
]
}
}
]
}
}
Extends
- module:alfresco/layout/Twister,