Skip to content

$param

$param is a parameter object that sends arbitrary data to the next UI screen. Scope is up to the next UI screen.
You can pass data to the destination screen by adding any property to the $param object within the action that executes the screen transition, as follows:

$param.name = "Adam";
$param.age = 26;
$fn.nextUI(uiCode);

You can receive $param in the onload action of the target UI.

const name = $param.name;
const age = $param.age;