Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
ar5
Partner - Contributor III
Partner - Contributor III

Visual Export with Current Selections

We are using capability API to export data into excel, pdf and image in Qlik Sense. Is there a way to inject 'Current Selections' into the object before exporting? If not possible, can we use .NET sdk 

app.visualization.get(attrs.id).then(function (vis) {
                  vis.exportData().then(function (link) {
                    console.log("Excel Download link", link);
                    window.open(link);
                    var title = modal.layout.qMeta.title;
                    $("#download_file").attr("href", link);
                    $("#download_file").show();
                  });
                });
Labels (2)
0 Replies