Button#
Button #
Button(
*,
action: ExternalAction,
widget_id: Optional[str] = None,
icon: Optional[TemplatedStringItem] = None,
label: Optional[TemplatedStringItem] = None
)
Spec for Button widget.
Construct spec for Button widget.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
action |
ExternalAction
|
Type of action to be performed on the button. |
required |
widget_id |
Optional[str]
|
unique widget id in a dashboard. |
None
|
icon |
Optional[TemplatedStringItem]
|
icon spec. |
None
|
label |
Optional[TemplatedStringItem]
|
label to be displayed in the button. |
None
|
Examples:#
Create a minimal Button widget
Create a Button widget with icon and label
ExternalAction #
Spec for Button Action.
Construct spec for Button Action.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
event_type |
TemplatedStringItem
|
event type spec. |
required |
event_data |
Union[WidgetField, RouteLink]
|
event data spec. |
required |