on method
Note: STABLE.
This API is reliable and breaking changes are unlikely.
This API is reliable and breaking changes are unlikely.
qlik.app.on(eventName, callback)
Adds listeners for the app events. Multiple listeners can be added to an event.
Version history
Introduced | Qlik Sense February 2018 |
Parameters
Name | Type | Description |
---|---|---|
eventName | String |
Name of the event. Can be:
|
callback | Function | Callback method. |
Example
var app = qlik.openApp("MY_APP_ID");
app.on("error", function ( error ) {
console.log("error listener called for app", error);
} );
app.on("warning", function ( warning ) {
console.log("warning listener called for app", warning);
} );
app.on("closed", function ( closed ) {
console.log("closed listener called for app", closed);
} );