
Contributor III
2018-01-09
09:16 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to export data on qliksense mashup
Hi all,pls tell me how to export data on qliksense mashup,can not be exported by clicking the right mouse button or with an extension without any restrictions,thank you!
7,614 Views
- « Previous Replies
-
- 1
- 2
- Next Replies »
11 Replies

Creator
2020-02-12
03:29 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
do you have any idea how to cancel a Export to excel request? for example exportData is taking too much of time to download , i want to cancel the Exportdata.
please let me know how can we do this.


Employee
2020-02-13
02:14 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
The only way you can do this is through CancelRequest (https://core.qlik.com/services/qix-engine/apis/qix/global/#cancelrequest), unfortunately we do not expose it in the capability APIs, but you should be able to use it through enigma.js
The request id should be part of the returned promise from the exportData method:
const exportObj = vis.exportData({ format: "CSV_C", state: "A" });
// should have something like:
/*
{
$$state: {status: 1, value: "..."},
requestId: 52 // <- requestId
then: ƒ patchedThen()
}
*/
837 Views

- « Previous Replies
-
- 1
- 2
- Next Replies »