Announcements
Hi,
we have issue with Xrm.Navigation.OpenFile.When I tried download anntation ther is error error = {errorCode: 2147873292, message: "This attachment can not be opened on your device.", code: 2147873292}. So, I tried to download simple base64 text "Man" as text/plain and there is still same error.
var file = {
fileContent: 'TWFuIA==',
fileName: 'test.txt',
fileSize: 1,
mimeType: 'text/plain'
};
Xrm.Navigation.openFile(file, 2).then(
function(){
console.log("Dialog was closed");
},
function(error){
console.log("error: " + error);
});
Could you help me?
Hi,
sry, for my late answer to previous post. I have mistake in my code"
bad: Xrm.Navigation.openFile(file, 2)
correct: Xrm.Navigation.openFile(file, {openMode : 2 })
Thanks
The code looks OK, so the issue may be with the settings on your device, as they may block file downloads
André Arnaud de Cal...
293,302
Super User 2025 Season 1
Martin Dráb
232,108
Most Valuable Professional
nmaenpaa
101,156
Moderator