Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

SVG Map Issues

Hello, I have an issue with SVG Maps and wondered if someone had a solution? I have a document with the SVG on tab number 4 or 5. When I first open the document the map shows. If I move off the tab and return the map is blank. (Sensitive data so only photos at present). I can only get it to reappear if I open its properties and tick / untick a box or switch webview off then on again. (neither an option if deployed to a server. I am reluctant to upgrade to IE11 as colleagues have had different issues at the version. I have downloaded SVG 1.10 and created my map again but still the same issue.

IE10.0.92 / Windows 8.0 / .net framework v4.0.30319

before moving off page

svgbefore.JPG.jpg

after moving off and returning to the page

svgafter.JPG.jpg

20 Replies
Arnaud_GUILLEMIN
Contributor
Contributor

I found a solution, change into this file: Script.js

(C:\ProgramData\QlikTech\QlikViewServer\Extensions\Objects\svgMap )

if (!window["ref" + r]) {
window["ref" + r] = "no"
}
$(".qvtr-tabs li").click(function () {
if ($(this).attr("class") != "selectedtab" && $(this).attr("id") == t) {
window["ref" + r] = "yes"
}
});

 

TO

if (!window["ref" + r]) {
window["ref" + r] = "no"
}
$(".qvtr-tabs li").click(function () {
window["ref" + r] = "yes"
});