-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgetMasterItems.js
More file actions
127 lines (110 loc) · 3.01 KB
/
getMasterItems.js
File metadata and controls
127 lines (110 loc) · 3.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
* Basic responsive mashup template
* @owner Enter you name here (Codeatroost@gmail.com)
*/
/*
* Fill in host and port for Qlik engine
*/
var prefix = window.location.pathname.substr( 0, window.location.pathname.toLowerCase().lastIndexOf( "/extensions" ) + 1 );
var config = {
host: window.location.hostname,
prefix: prefix,
port: window.location.port,
isSecure: window.location.protocol === "https:"
};
require.config( {
baseUrl: ( config.isSecure ? "https://" : "http://" ) + config.host + (config.port ? ":" + config.port : "") + config.prefix + "resources"
} );
require( ["js/qlik"], function ( qlik ) {
qlik.setOnError( function ( error ) {
$( '#popupText' ).append( error.message + "<br>" );
$( '#popup' ).fadeIn( 1000 );
} );
$( "#closePopup" ).click( function () {
$( '#popup' ).hide();
} );
$('.list').click(function(){
var listType=$(this).attr("id");
if (listType=="VariableList"){
getVariables();
}
else
{
getList(listType);
}
});
$('#sheet').click(function(){
getSheets();
});
$('#app').click(function(){
getAppDetails();
});
//open apps -- inserted here --
var app = qlik.openApp('Consumer Sales.qvf', config);
function getSheets(){
app.getAppObjectList( 'sheet', function(reply){
var str = "";
console.log(reply);
$.each(reply.qAppObjectList.qItems, function(key, value) {
console.log(value.qName);
str=str+ "<br>" + value.qData.title + " - " + value.qInfo.qId;
app.getFullPropertyTree(value.qInfo.qId).then(function(reply){
//console.log(reply.);
});
});
$('#QV01').html(str)
});
}
function getAppDetails(){
app.getAppLayout(function(layout){
console.log("Layout")
console.log(layout);
$('#QV01').html(JSON.stringify(layout))
});
}
function getList(listType){
app.getList(listType, function(reply){
var str="";
$.each(reply["q"+listType].qItems, function(key, value) {
str=str+ "<br>" + value.qData.title + " - " + value.qInfo.qId;
});
$('#QV01').html(str);
});
}
function getVariables(){
var str="";
app.getList("VariableList", function(reply){
$.each(reply.qVariableList.qItems, function(key, value) {
str=str+ "<br>" + value.qName + " - " + value.qInfo.qId;;
app.variable.getContent(value.qName).then(function(model){
console.log(model);
});
});
$('#QV01').html(str);
});
}
/*app.createGenericObject({
qMeasureListDef : {
qType: "measure", qData: { title: "/title", tags: "/tags" } }
}, function(reply){
console.log(reply);
$.each(reply.qMeasureList.qItems, function(key, value) {
//console.log(value);
app.getFullPropertyTree(value.qInfo.qId).then(function(reply){
console.log(reply);
});
});
});
app.createGenericObject({
qDimensionListDef : {
qType: "dimension", qData: { title: "/title", tags: "/tags" } }
}, function(reply){
console.log(reply);
$.each(reply.qDimensionList.qItems, function(key, value) {
//console.log(value);
app.getFullPropertyTree(value.qInfo.qId).then(function(reply){
console.log(reply);
},function(errror){});
});
});*/
});