Skip to main content Skip to complementary content

getAppList method

global.getAppList(callback)

Method used to get a list of Qlik Sense apps that you potentially can connect to and it registers a callback to receive the data.

This method opens a web socket, gets the app list, and then keeps the web socket open for you to make other calls as well.

Since:
  • 1.1

Parameters

Name Type Description
callback Function Callback method.

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!