2
Manual NodeRED Flowfuse Ui Button Manual
znetsixe edited this page 2026-05-11 22:24:29 +02:00
FlowFuse ui-button Manual (EVOLV Reference)
Note
Reference page. Maintained for context; not regenerated by code. See Home for current top-level navigation.
Source: https://dashboard.flowfuse.com/nodes/widgets/ui-button.html
Purpose
Clickable button that sends a message on user interaction.
Properties
| Property | Type | Dynamic | Notes |
|---|---|---|---|
group |
ref | No | Parent ui-group |
width |
int | No | Columns |
height |
int | No | Row units |
label |
string | Yes | Button text |
icon |
string | Yes | Material Design icon name (no mdi- prefix) |
iconPosition |
string | Yes | "left" or "right" |
buttonColor |
string | Yes | Background color |
textColor |
string | Yes | Label color (auto-calculated if omitted) |
iconColor |
string | Yes | Icon color (matches text if omitted) |
tooltip |
string | No | Hover tooltip |
order |
int | No | Position in group |
emulateClick |
bool | No | Trigger click on any received msg |
Events
| Event | Enabled By | Output |
|---|---|---|
| Click | onclick: true |
msg.payload = configured value |
| Pointer Down | onpointerdown: true |
msg.payload + msg._event with timestamp |
| Pointer Up | onpointerup: true |
msg.payload + msg._event with timestamp |
Hold duration = pointerup._event.timestamp - pointerdown._event.timestamp.
Input
msg.payload — sets button payload value. With emulateClick: true, any input msg triggers a click.
msg.enabled — true / false to enable/disable the button.
Dynamic Properties (msg.ui_update)
msg.ui_update = {
label: "Stop",
icon: "stop",
iconPosition: "left",
buttonColor: "#f44336",
textColor: "#ffffff",
iconColor: "#ffffff",
class: "my-btn-class"
};
EVOLV Key Rules
- Use buttons for operator actions (start/stop pump, acknowledge alarm).
- Set
emulateClick: false(default) — don't auto-trigger on incoming messages. - For toggle buttons, update label/color dynamically via
msg.ui_updatefrom downstream logic. - Pair with confirmation dialog (ui-notification or ui-template) for destructive actions.
- Standard sizing:
width: 2, height: 1for inline;width: 4, height: 1for full-width in 4-col group.
EVOLV Wiki
Start here
Reference
Per-node wikis
- pumpingStation
- machineGroupControl
- valveGroupControl
- reactor
- settler
- monster
- rotatingMachine
- valve
- diffuser
- measurement
- dashboardAPI
- generalFunctions
Domain concepts
- ASM Models
- PID Control Theory
- Pump Affinity Laws
- Settling Models
- Signal Processing — Sensors
- InfluxDB Schema Design
- Wastewater Compliance NL
- OT Security IEC 62443
Operations findings
Node-RED / FlowFuse manuals
- Manual Index
- Runtime — Node.js
- Function Node Patterns
- Messages and Editor Structure
- FlowFuse ui-chart
- FlowFuse ui-button
- FlowFuse ui-gauge
- FlowFuse ui-text
- FlowFuse ui-template
- FlowFuse ui-config
- Dashboard Layout
- Widgets Catalog
Archive