Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi QlikSense Experts
I am trying to exportData in a mashup with the following piece of code
app.getObject('QV04','PtJP').then(function(model) {
var $exportButton = $( document.createElement('button')).text('Export').appendTo('body');
var table = new qlik.table(model);
$exportButton.bind('click', function() {
table.exportData({download: true});
});
});
and the table.exportData fails with the following error:
Am I doing something incorrectly? I am on the QlikSense Desktop 3.2 SR4
Thanks
exportData is not working for me as well after upgrading from 3.1sr4 to 3.2sr3. Am getting below error "TypeError: Cannot read property 'qUrl' of undefined" . is there a work around for this error.