Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mainly.ai/llms.txt

Use this file to discover all available pages before exploring further.

ContinueButton(label="Continue", disabled=True)

Example

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
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.

Parameters

NameTypeDescription
labelstringThe text displayed on the button. Default “Continue”.
disabledboolWhether the button is disabled. Default True.