Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have created a map in Qlikmaps and had to make my own key. I don't like the look of the key unless the map is there, so I was hoping to create a conditional show so that it only shows when it is in web view or on the server. I haven't seen any functions that could check that information, so I was seeing if anyone has ever done it before.
Hi Trey,
have you found any workaround for this?
I have the same issue...
Massimiliano
Here is the condition I use to determine if I'm on the server. I check the document path for "\" (fielsystem) or "/" (server http://)
=index(DocumentPath(),'\')>0 // Filesystem
=index(DocumentPath(),'/')>0 // Http
I ended up incorporating my key into a list box following this guide:
That looks like a very useful blog post! I'm glad it solved your issue.
-Rob