getFullPropertyTree method
Information noteSTABLE.
This API is reliable and breaking changes are unlikely.
This API is reliable and breaking changes are unlikely.
qlik.app.getFullPropertyTree(id)
Gets properties for a generic object, the children of the generic object and the bookmarks and/or embedded snapshots of the generic object.
Version history
Version state | Details |
---|---|
Introduced | 1.1 |
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.getFullPropertyTree(value.qInfo.qId).then(function(model){
alert(model.propertyTree.qChildren.length + ' children');
});