Hi All,
i am using mashup to develop a Dashboard, in that we are giving functionality to export the Data to Excel, we are using below code to export the Data.
$('#btn_first_chart_export').click(function(e){
app1.getObject(summary_first_chart_id).then(function(model) {
var table = qlik.table(model);
table.exportData({download: true});
});
});
The code is working fine, but i want to show a export progress popup as shown in Qliksense. because export is started in background and if its take too much time due to high volume of data then user did not get to know that export is in progress.
i want how can we identify that what is the status of export progress and when its completed so we can show "export in progress" popup message tell export is completed.
Thanks in Advance
Hi ,
can anyone help me how to cancel the long export running request in Qliksense Mashup.
hi Jitu,
im trying to achieve export the Data to Excel from a mashup, i saw your example..
can you please advice where to add this code ,
to apply export from tables \ straight\pivot in the mashup (qtext\js\html\qliksense) ?