office-app

We couldn't connect to the catalog server for this add-n

血红的双手。 提交于 2019-12-07 21:03:21
问题 I just realized that many add-ins cannot be loaded in Excel Online (Chrome): Does anyone know what's happening? 回答1: This is a known issue reported through StackOverflow and other channels. We're investigating this as a high priority issue. We'll let you know when the issue is resolved. 来源: https://stackoverflow.com/questions/46670563/we-couldnt-connect-to-the-catalog-server-for-this-add-n

How to show an Office/Word 2013 Task Pane 'Office App' after a click on a button in Ribbon?

自作多情 提交于 2019-12-06 11:48:46
I've created a Task Pane App with the new Office App model. It uses JQuery and a REST Service to search and display data from SharePoint in the (Word 2013) Task Pane. This works ok, however the App Task Pane should be activated after clicking on a custom button in the ribbon. To create the button, I've created a Word 2013 Addin project with following Custom UI XML: <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load"> <ribbon> <tabs> <tab idMso="TabHome"> <group id="ContentGroup" label="SharePoint App"> <button id="spAppButton" label="SharePoint App"

We couldn't connect to the catalog server for this add-n

◇◆丶佛笑我妖孽 提交于 2019-12-06 11:27:51
I just realized that many add-ins cannot be loaded in Excel Online (Chrome): Does anyone know what's happening? This is a known issue reported through StackOverflow and other channels. We're investigating this as a high priority issue. We'll let you know when the issue is resolved. 来源: https://stackoverflow.com/questions/46670563/we-couldnt-connect-to-the-catalog-server-for-this-add-n

How to determine if an Office Add-in is running under Excel or Excel Online?

白昼怎懂夜的黑 提交于 2019-11-29 22:16:17
问题 I'm writing an Office Add-in (formerly, Apps for Office). I'm using office.js and in some point of code I want to check if the app is running in excel (desktop software) or running on the web (Excel Online) Something like: if (Office.IsRunningOnWeb){ // Do something. } 回答1: You can use document type: if (Microsoft.Office.WebExtension.context.document instanceof OSF.DDA.ExcelWebAppDocument) { //Your app running on the web } if (Microsoft.Office.WebExtension.context.document instanceof OSF.DDA