Example
This control allows users to run the graph until the node is reached. It’s useful for creating nodes that update their attributes based on their inputs during partial execution.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
The RunUntilButton control displays a button that executes the graph until the current node is reached.
RunUntilButton(label="Run Until this Node")
from mirmod.controls import RunUntilButton
@wob.receiver("state", "run", control=RunUntilButton(label="Execute to Here"), hidden=False, connectable=False)
def run_until(self, data):
pass
| Name | Type | Description |
|---|---|---|
| label | string | The text displayed on the button. Default “Run Until this Node”. |