Example
This control presents a button to the user which lets them continue execution from the current state. This is useful for creating interactive workflows that pause for user input.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
The ContinueButton control displays a button that allows users to continue workflow execution.
ContinueButton(label="Continue", disabled=True)
from mirmod.controls import ContinueButton
@wob.receiver("state", "continue", control=ContinueButton(label="Continue Processing", disabled=False), hidden=False, connectable=False)
def continue_button(self, data):
pass
| Name | Type | Description |
|---|---|---|
| label | string | The text displayed on the button. Default “Continue”. |
| disabled | bool | Whether the button is disabled. Default True. |