getScript method
Information noteSTABLE.
This API is reliable and breaking changes are unlikely.
This API is reliable and breaking changes are unlikely.
qlik.app.getScript()
Gets the data load script of this app.
Version history
Version state | Details |
---|---|
Introduced | Qlik Sense June 2017 |
Parameters
None.
Returns
A promise of a qScript object with the load script values.
Example
var app = qlik.openApp("2abac31e-3b46-4b78-8bxf-c5cea1d2514d", config);
app.getScript().then( function(script){
console.log(script);
});