getAppList method
qlik.getAppList(callback, config)
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.
Parameters
| Name | Type | Description |
|---|---|---|
| callback | Function | Callback method. |
| config | Object | Configuration parameters (optional, refer to openApp for documentation). |
Example
qlik.getAppList(function(list){
var str = "";
$.each(list, function(key, value) {
str += value.qDocName + '('+ value.qDocId ') ';
});
alert(str);
});
Tip noteSee Loading external and internal modules for more example of use.