getObjectProperties method
Information noteSTABLE.
This API is reliable and breaking changes are unlikely.
This API is reliable and breaking changes are unlikely.
qlik.app.getObjectProperties(id)
Gets properties for a Qlik Sense object.
Version history
Version state | Details |
---|---|
Introduced | 1.0 |
Parameters
id
Type: String
Object ID.
Returns
A promise of an object model.
Tip noteFor more information regarding a promise, see The Promise API.
Example
app.getObjectProperties("uPyZavD").then(function(model){
this.title = model.properties.title;
});