Skip to main content Skip to complementary content

getAppList method

Information noteSTABLE.

This API is reliable and breaking changes are unlikely.
Information noteThis functionality is not available in Qlik Sense SaaS.

qlik.global.getAppList(callback)

Gets a list of Qlik Sense apps that you potentially can connect to and registers a callback to receive the data.

Calling the getAppList method opens a WebSocket, gets the app list, and then keeps the WebSocket open for you to make other calls as well.

Version history

Version history
Version state Details
Introduced 1.1

Parameters

callback

Type: Function

Optional.

Callback method. Registers a callback that is executed every time data is returned.

Example

qlik.getGlobal(config).getAppList(function(list){
	var str = "";
	$.each(list, function(key, value) {
		str +=  value.qDocName + "("+ value.qDocId +")";
	});
	alert(str);
});

Learn more

 

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!