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โฆ
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 element when the options are finite, well-known, and should all be visible at a glance without requiring the user to open a dropdown.
Like the Select Input, the Radio Button supports three source types for populating its options: a static list defined at design time, a JSON object, or a live URL endpoint โ enabling dynamic option sets that can be updated at runtime. The currently selected value and the option list itself are both part of the element's data model and can be manipulated in any Procesio Forms event.
Key Use Cases
โขย ย ย ย ย ย ย Priority selection (Low / Medium / High), gender, or response type fields
โขย ย ย ย ย ย ย Approval routing choices โ e.g., 'Approve', 'Reject', 'Escalate'
โขย ย ย ย ย ย ย Dynamically updating options from an API on form load to reflect real-time data
โขย ย ย ย ย ย ย Pre-selecting a value from a process variable and displaying it as read-only
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, onChange, or custom triggers.
| API Name | Description | Type | Default | Notes |
|---|---|---|---|---|
| label | Display label for the radio group | string | โ | โ |
| tooltip | Help text shown alongside the label | string | โ | โ |
| infotext | Supplementary info displayed below the group | string | โ | โ |
| defaultvalue | Initially selected value on form load | any | โ | โ |
| value | Currently selected value โ read or set at runtime | any | โ | โ |
| readonly | View-only โ user cannot change selection | boolean | false | โ |
| disabled | Fully non-interactive | boolean | false | โ |
| visible | Controls element visibility | boolean | true | โ |
| name | Unique element name | string | โ | โ |
| id | Unique element ID | string | โ | โ |
| required | A value must be selected to submit | boolean | false | โ |
| sourcetype | How options are provided | string | โ | static list, json, url |
| sourcevalue | The actual option data matching the chosen source type | string|array | โ | โ |
For support, please join our Discord community for further assistance and support.
Checkbox
The Checkbox element captures a simple boolean decision โ checked or unchecked โ making it the ideal control for consent acknowledgments, featureโฆ
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,โฆ

