I am working on a screen which displays images stored in Azure Blob storage and on click it should download the image in user's local device mobile/computer.
I am able to get blob url using following formulas:
UpdateContext({_filecontent :AzureBlobStorage.GetFileMetadata(Gallery2.Selected.BlobID) });
UpdateContext({_filePath : "https://[XYX].blob.core.windows.net" & _filecontent.Path});
Download(_filePath);
This opens the image in new tab so user needs to click on image and do Save As to download the file. I want direct download instead of opening this file in new tab.
Any solution?