Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
jitu2110
Creator
Creator

Export to Excel in Qliksense Mashup

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

Labels (3)
2 Replies
jitu2110
Creator
Creator
Author

Hi , 

can anyone help me how to cancel the long export running request in Qliksense Mashup.

ilanbaruch
Specialist
Specialist

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) ?