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 add any property in $param as follows

$param.name = “Adam”;
$param.age = 26;

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

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