Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello All,
I have this code
sub WebView
set docprop = ActiveDocument.GetProperties
set v = ActiveDocument.GetVariable("vViewMode")
if(docprop.UseAjaxUI) then
v.SetContent "Web view Mode",true
else
v.SetContent "Desktop view Mode",true
end if
end sub
Macro is not working here. If not with macros please tell me how to do with expressions. I mean i need to display application opened in webview in server and desktop mode in desktop. Please can any one tell me how to do.
Regards,
R.Bharat Kishore
Hi,
Instead of macros, you can use fuctions.
A combination of the results of ClientPlatform() and qlikviewversion() should solve your problem as mentioned by Miguel as an aswer to my question here:
http://community.qlik.com/message/107639#107639
You can also try the if statement using this functions here:
http://community.qlik.com/message/207968#207968
Hope this helps,
Erich
Hi,
Instead of macros, you can use fuctions.
A combination of the results of ClientPlatform() and qlikviewversion() should solve your problem as mentioned by Miguel as an aswer to my question here:
http://community.qlik.com/message/107639#107639
You can also try the if statement using this functions here:
http://community.qlik.com/message/207968#207968
Hope this helps,
Erich
Thanks a lot Erich. I got my problem solved.
Regards,
R.Bharat Kishore