naveen ashok
naveen ashok

Reputation: 331

Download in Chrome triggered from excel does not work

Hello every one I just found out that chrome has depreciated download triggered from iframes or sandbox. because of this any download's I trigger does not work as expected inside excel add-in ( Only in chrome ). I think that excel dev team should add the property 'allow-downloads' in their iframe please refer the image to see the properties added in the extension iframe. Please let me know if there any alternate.

enter image description here

Chrome depreciation reference link - https://developers.google.com/web/updates/2020/04/chrome-83-deps-rems

Code I have used inside excel add in window.open('*url to your file*', 'Download');

Update - I have raised an issue in office js repo, https://github.com/OfficeDev/office-js/issues/1241

Upvotes: 0

Views: 493

Answers (1)

PerlBatch
PerlBatch

Reputation: 210

Write a batch command as below and save it as filename.bat. Then execute it. It should download the file

start "Enter the full path of downloading file"

Upvotes: 0

Related Questions