Module: alfresco/forms/CollapsibleSection

alfresco/forms/CollapsibleSection

This extends the Twister and mixes in the LayoutMixin to provide a collapsible section into which form controls can be placed.
Author:
  • Dave Draper
License:
Source:

Example

Example form with a CollapsibleSection

{
  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,