Button
The Button element is the primary action trigger in Procesio Forms. It can be used to submit the form, trigger a process, execute JavaScript,โฆ
The Button element is the primary action trigger in Procesio Forms. It can be used to submit the form, trigger a process, execute JavaScript, navigate between steps, or initiate any other interaction that requires deliberate user intent.
When submit is set to true, clicking the button submits the form and its collected data. When used without submission, it acts as a pure action trigger โ useful for intermediate saves, data refreshes, or launching sub-processes mid-flow. Its label, visibility, and interactive state are all controllable from the data model at runtime, making it easy to implement conditional UI patterns like 'Show Submit button only after all required fields are filled'.
Key Use Cases
โขย ย ย ย ย ย ย Primary form submission (submit: true) at the end of a form flow
โขย ย ย ย ย ย ย Triggering a mid-form process (e.g., fetch data, validate externally) without submitting
โขย ย ย ย ย ย ย Dynamically disabling the button until all required conditions are met
โขย ย ย ย ย ย ย Hiding the submit button until the user has completed a specific step
โขย ย ย ย ย ย ย Presenting multiple action options (Approve / Reject) as separate buttons
Runtime API โ Attributes in Procesio Forms
All attributes below are accessible and modifiable at runtime via the element's data model in Procesio Forms โ on any available event such as onLoad, onClick, or custom triggers.
| API Name | Description | Type | Default | Notes |
|---|---|---|---|---|
| label | The button's display text | string | โ | โ |
| tooltip | Tooltip text shown on hover | string | โ | โ |
| infotext | Supplementary info displayed near the button | string | โ | โ |
| readonly | If true, the button is non-clickable | boolean | false | โ |
| visible | Controls button visibility | boolean | true | โ |
| name | Unique element name | string | โ | โ |
| id | Unique element ID | string | โ | โ |
| submit | If true, clicking this button submits the form | boolean | false | โ |
For support, please join our Discord community for further assistance and support.
Radio Button
The Radio Button element presents a set of mutually exclusive options, allowing the user to select exactly one choice from a group. It is the go-toโฆ
Dropdown
The Dropdown element in Procesio Forms functions as an action menu trigger rather than a selection input โ it is a button-like component that expandsโฆ

