Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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!
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.
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()
}
*/