Collapsible#
CollapsibleSection #
CollapsibleSection(
*,
content: Union[LayoutItem, List[LayoutItem]],
header: Optional[
Union[TemplatedStringItem, CollapsibleSectionHeader]
] = None,
expanded: bool = True
)
Organize and group content with expandable/collapsible sections.
The CollapsibleSection class is used to create collapsible sections within a dashboard layout, providing a way to organize and group content that can be expanded or collapsed.
Constructor for CollapsibleSection.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
content |
Union[LayoutItem, List[LayoutItem]]
|
content within the Section. One of Widget, Card, Grid, SelectableSection. |
required |
header |
Optional[Union[TemplatedStringItem, CollapsibleSectionHeader]]
|
Header specifications. By default the CollapsibleSection does not have title |
None
|
expanded |
bool
|
Whether the section is expanded or not. |
True
|
Examples:#
Create a Collapsible Section layout and add a widget
Create a Collapsible Section layout with multiple Widgets
CollapsibleSectionHeader #
CollapsibleSectionHeader(
*chips: CollapsibleSectionChip,
title: Optional[TemplatedStringItem] = None
)
Provides title and chips for collapsible section headers.
The CollapsibleSectionHeader class represents the header of a collapsible section, providing additional information such as title and chips.
Constructor for CollapsibleSectionHeader.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
chips |
CollapsibleSectionChip
|
chips to be added to the collapsible section header. |
()
|
title |
Optional[TemplatedStringItem]
|
Collapsible Section title. |
None
|
Examples:#
Create a Collapsible Section layout with a title
CollapsibleSectionChip #
CollapsibleSectionChip(
*,
label: Union[str, GenericLink],
tooltip_text: Optional[
List[TemplatedStringItem]
] = None,
prefix: str = "",
suffix: str = ""
)
Labels or links within collapsible section headers for extra context.
The CollapsibleSectionChip class represents individual chips within a collapsible section header, providing additional labels or links.
Constructor for CollapsibleSectionChip.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
label |
Union[str, GenericLink]
|
Collapsible Section Header label value. Can assume a static label. |
required |
tooltip_text |
Optional[List[TemplatedStringItem]]
|
informational pop up text. Each element of list is displayed
as a separate paragraph. Can only use this option if the |
None
|
prefix |
str
|
prefix value to use in before each label. |
''
|
suffix |
str
|
suffix value to use in after each label. |
''
|