Callback Constructor uno
Creates a new Callback
Calls a JavaScript function when a trigger is activated.
This example calls the JavaScript function someJSFunction
when a Button is Clicked.
<JavaScript>
var someJSFunction = function () {
console.log("some function called");
}
module.exports = { someJSFunction: someJSFunction };
</JavaScript>
<Button Text="Do something">
<Clicked>
<Callback Handler="{someJSFunction}"/>
</Clicked>
</Button>
Creates a new Callback
The JavaScript function to be called
The number of seconds after the start of the trigger that the action should be performed.
hide
hide
hide