Open zara-gm opened 1 year ago
same issue here, i think this funtionality has never worked
If anyone need a solution, go to DocumentUploadCmpController.js and modify handleLinkClick with:
handleLinkClick : function(component, event, helper) {
var fileUrl = event.getSource().get("v.value");
var link = document.createElement('a');
link.href = fileUrl;
link.download = fileUrl.substring(fileUrl.lastIndexOf('/') + 1);
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
},
It works fine
Issue with Download Form Button
Hello,
I'm currently investigating how to make the Download Form button work correctly (located in the Financial details section), as it is not functioning as intended (please refer to the screenshots below).
The download form is not visible in the
Utility Flow - Create Records from Flow Session
I was able to find it in the code, but I'm affraid that it won't be possible to modify due to being a managed package.
src/aura/DocumentUploadCmp/DocumentUploadCmp.cmp
We have two possible solutions in mind:
Your assistance in resolving this matter would be greatly appreciated. Thank you so much!
AppExchange Listing
https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3A00000FMiQpUAL
Documentation
How to use All Onboard Starter Pack