office-js

getRestApiId function in objects from office-js for OneNote

风流意气都作罢 提交于 2020-01-15 05:14:08
问题 I'm developing add-in for OneNote and I've had trouble use OneNote REST APIs, as office-js doesn't give ID compatible with REST APIs. StackOverflow UserVoice And as I know that the ID from office-js is not unique, I had to retrieve data from REST API using clientUrl to get the unique ID and it took around 5-6 secs per each call. It was our big issue and couldn't find any workaround for this. But after a few months, I just found there is a function named getRestApiId in objects from office-js

Outlook 365 add-in only appears in Outlook 2013 client

我是研究僧i 提交于 2020-01-14 13:57:32
问题 I have a problem to show my add-in in Outlook 2016. I developed it as a Office365 Add-in and it works like a charm in Outlook 2013. But at the time I wanted to test it in Outlook 2016 it does not show up in the 'Apps for Office' section. I think I have to add something to the manifest.xml, but I don't know what. In Outlook 2013 it opens a task pane in the right corner. It would be nice if it would be the same in Outlook 2016. My Outlook 2013/2016 Add-in .XML looks like this: <?xml version="1

isSetSupported('Mailbox', '1.8') returns false in add-in running in OWA with Office365

。_饼干妹妹 提交于 2020-01-14 05:35:07
问题 In a supported environment listed here. Office.context.requirements.isSetSupported('Mailbox', '1.8') is returning false in OWA (Chrome) with Office365. When can we expect isSetSupported to return true for v1.8 in this environment? I'm trying to determine if Office.context.mailbox.item.getAttachmentContentAsync() is supported on the client/server configuration running the add-in. Should we be checking the Exchange server version + client build version against known functioning permutations or

Excel Office JS filter data

孤街浪徒 提交于 2020-01-13 16:46:27
问题 In Excel a user can select a range and hit Ctrl + Shift + L to show filters. I am trying to get equivalent behavior from an Office.js Add-in. The closest I have come to that is adding a table over the range I want to filter and then adding a filter to the table. There seem to be a couple of significant problems with that however. First, adding a table this way for 30000+ rows is very slow and I am frequently using tables much larger than that. If I do Ctrl + Shift + L over a range that size

Excel Office JS filter data

喜欢而已 提交于 2020-01-13 16:46:15
问题 In Excel a user can select a range and hit Ctrl + Shift + L to show filters. I am trying to get equivalent behavior from an Office.js Add-in. The closest I have come to that is adding a table over the range I want to filter and then adding a filter to the table. There seem to be a couple of significant problems with that however. First, adding a table this way for 30000+ rows is very slow and I am frequently using tables much larger than that. If I do Ctrl + Shift + L over a range that size

Office outlook web(AddIn) dowloand message file

我只是一个虾纸丫 提交于 2020-01-13 07:18:50
问题 Hei Iam developing Outlook web addIn in which i want to access all the data of email ,Senderemail, receipent email ,subject and sent date etc. I also want to download the entire message file .I have found one outlook web REST api https://msdn.microsoft.com/en-us/office/office365/api/mail-rest-operations#GetMessage but dont know how to use it. Anyone has experience with that ? If anyone can share any example it would be helpful Thanks 回答1: 1 . To get the message details you can use the

Office outlook web(AddIn) dowloand message file

女生的网名这么多〃 提交于 2020-01-13 07:18:07
问题 Hei Iam developing Outlook web addIn in which i want to access all the data of email ,Senderemail, receipent email ,subject and sent date etc. I also want to download the entire message file .I have found one outlook web REST api https://msdn.microsoft.com/en-us/office/office365/api/mail-rest-operations#GetMessage but dont know how to use it. Anyone has experience with that ? If anyone can share any example it would be helpful Thanks 回答1: 1 . To get the message details you can use the

Debugging Outlook Add-in Desktop

自闭症网瘾萝莉.ら 提交于 2020-01-13 07:15:13
问题 I'm currently developing an Add-in using yeoman and generator-office for Outlook to save an email and its attachments to another service. Outlook Version: MS Office Professional Plus 2016 v.16.0.48.49.1000 I am able to sideload the add-in by going to File->Manage Add-ins->(Outlook webapp extensions page opens)->Add from file->Select my manifest.xml. Then I run npm run start and I get: App type: desktop Enabled debugging for add-in 17717569-bd61-4c6a-b99d-ca55924a2916. Debug method: 0 Starting

How to diagnose failed validation of Word Add-In when it works on my own setup?

这一生的挚爱 提交于 2020-01-12 10:54:40
问题 I'm developing an MS Word Add-In. I've tested it on both Windows and Mac, and it works fine for me. Microsoft requires its own validation of Add-Ins to make sure they work correctly, and my Add-In fails for them even though it works for me with the same version of Windows and Word. I had a phone call with the Microsoft Validation team, and their only suggestion was that I post a question on Stack Overflow so here goes! This is the version of Windows and Word that works for me but fails for

office excel making a CORS Request as cross domain request

谁说胖子不能爱 提交于 2020-01-12 10:34:09
问题 I am trying to make a cross domain request from my excel addin, as sugested by here : http://dev.office.com/docs/add-ins/develop/addressing-same-origin-policy-limitations i am trying to implement a cors request. However whenever i try to open my request i get an acces denied error. the code i use herefor try's to open a connection however here i already get the error var xhr = new XMLHttpRequest(); xhr.open('GET', 'url'); //this line gives an acces denied error. xhr.onload = function(e) { }