Skip to main content Skip to complementary content

getExtensionList method

qlik.getExtensionList(callback)

Method used to get a list of extensions installed for Qlik Sense. The reply contains all extensions, that is visualization extensions and mashups.

Since:
  • 1.1

Parameters

Name Type Description
callback Function

Optional.

Callback method.

Returns

Returns a promise of a reply.

Tip noteFor more information regarding a promise, see http://docs.angularjs.org/api/ng.$q.

Example

qlik.getExtensionList(function(list){
	var str = "";
	list.forEach(function(value) {
		str +=  value.id + '(' + value.data.type + ') ';
	});
	alert(str);
});

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!