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?