getExtensionList method
Information noteSTABLE.
This API is reliable and breaking changes are unlikely.
This API is reliable and breaking changes are unlikely.
Warning noteDEPRECATED.
This API is deprecated and may be removed in a future version.
This API is deprecated and may be removed in a future version.
qlik.getExtensionList(callback)
Gets a list of extensions installed for Qlik Sense. The reply contains all visualization extensions and mashups.
Version history
Version state | Details |
---|---|
Introduced | 1.1 |
Deprecated |
June 2019 Use instead: Extension: Get Schemas |
Parameters
callback
Type: Function
Optional.
Callback method.
Returns
A promise of a Qlik associative engine reply.
Tip noteFor more information regarding a promise, see The Promise API.
Example
qlik.getExtensionList(function(list){
var str = "";
list.forEach(function(value) {
str += value.id + '(' + value.data.type + ') ';
});
alert(str);
});