Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I m working in qlik sense by integrating through Mashups in ASP.Net. I m facing the visualization error coming in one of my extension - export- data. which was downloaded the latest version and imported through the QMC. I can able to export in Qlik Sense but after integration in my site, it shows the Visualization error. kindly share your suggestions/solutions for this.
I m getting the following error while rendering with ASP.NET using Mashups - "the visualization was not found on the server: swr - sense-export"
Thanks in advance.
Subash.
Hi,
https://github.com/stefanwalther/sense-export
I think you are using this extension, this will not work with your mashups as its for default Qlik sense App pages,
May be you have to look into the extension code and change according to your mashup.
sense-export-master.zip\sense-export-master\src\properties.js
sense-export-master.zip\sense-export-master\src\swr-sense-export.js
or include those JS files of the export extension in your mashup folder and use those functions.
Hope this helps
Thanks,
Lakshmikandh
Thanks for your response.
I used this, it does the magic. it works for me.
require.config({
config: {
text: {
useXhr: function (url, protocol, hostname, port) {
return true;
}
}
}
});
Thanks a lot for your kind response.
Subash.