Skip to main content
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.