We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c351873 commit 570038bCopy full SHA for 570038b
1 file changed
MDX2JSON/Dashboard.cls.xml
@@ -121,8 +121,15 @@ Converts relevant parts of %DeepSee.Dashboard.Widget object into %ZEN.proxyObjec
121
&sql(SELECT cubeName into :cube FROM %DeepSee_Dashboard.Pivot WHERE fullName=:Widget.dataSource)
122
set:(SQLCODE'=0) cube=""
123
124
- set st = ..GetMdx(Widget.dataSource, .mdx, .basemdx)
125
- //return:($$$ISERR(st)) st //all checks passed beforehand
+ if (Widget.dataSource'="") {
+ set st = ..GetMdx(Widget.dataSource, .mdx, .basemdx)
126
+ } else {
127
+ // Linked widgets processing
128
+ set mdx = ""
129
+ set basemdx = ""
130
+ set obj.Link = Widget.dataLink
131
+
132
+ }
133
134
set obj.mdx = mdx
135
set obj.name = Widget.name
0 commit comments