Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
after moving off and returning to the page
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"
});