FlowContext
In the step handler of registerFlow, the ctx parameter is a FlowRuntimeContext instance. Through the delegation chain, it can access all properties and methods at both the model level and the engine level.
The delegation chain is:
Common Properties
The most commonly used ctx properties in plugin development:
Common Methods
Request
Dialog / Drawer
Flow Execution Control
Action & Event
ACL
Others
Typical Usage in Plugin Development
Show a message in a click handler
Open a dialog to create a record
Get current row data (record-level action)
Operate data via resource
Related Links
- FlowEngine Overview (Plugin Development) — FlowModel basics and registerFlow
- FlowDefinition — Complete parameter reference for registerFlow
- FlowEngine Full Documentation — Complete reference for FlowModel and Flow

