Questions tagged [office-app]

Office Web Apps are touch-friendly web applications that let you create, edit and share your Excel, Word, PowerPoint and OneNote files from any browser.

You can share and simultaneously work on your documents with classmates, friends and co-workers. No need to merge different versions later.

106 questions
1
vote
0 answers

range.formulas assignment is not updating the Formula Bar in Excel add-in

I'm in an Excel web Add-in (office-js), in a .xlsx file In Range C3: C6 there are formulas that in the same type VLOOKUP Snapshot of before code execution And In index.js my code is let data=[ ["=INDEX(R2C11:R9C11,MATCH(R[0]C2,R2C10:R9C10,0))"], …
国贵棠
  • 31
  • 3
1
vote
1 answer

Auto-open does not work for people who have not signed in in browser

I want to share a document online by a URL with some colleagues. When they click the URL and view the document online, I want a task-pane add-in to be automatically opened. I used Office-OOXML-EmbedAddin to create such a file with Script Lab…
SoftTimur
  • 5,630
  • 38
  • 140
  • 292
1
vote
1 answer

Save before closing a document

I have developed an Office add-in. It contains an editor where users could type and save a text. I want to realise a feature: 1) One option is, when a user closes a spreadsheet/document, I want to remind them of saving the text on the add-in (by…
SoftTimur
  • 5,630
  • 38
  • 140
  • 292
1
vote
1 answer

What will happen when we modify manifest of an existing Office add-in?

I have an Office add-in available in the store. Currently, part of its manifest file is I want to change it to the follows, and expect this will make the…
Tie Cheng
  • 60
  • 6
1
vote
1 answer

Add-in can't run in Office Professional Plus 2016

One of my add-ins, Formula Formatter, works well in Office 365. However, one client told me it cannot be loaded in Office Professional Plus 2016. Does anyone know what may be the reason? Should we do something special in the manifest xml for Office…
Tie Cheng
  • 60
  • 6
1
vote
1 answer

Popup window inside a task pane add-in

I have a task pane add-in in Office. I have an item in the task pane, and a delete button. Now, when users click on the delete button, I want to pop up a small window to ask if users are sure about the deletion. If yes, we continue; if no, we go…
SoftTimur
  • 5,630
  • 38
  • 140
  • 292
1
vote
1 answer

Zoom in/out the task pane

If we consider the task pane of an Office add-in as a small browser, I am wondering if there is a native way to zoom in/out it like what we can do in a normal browser by cmd + +/cmd + - . For example, in Excel for Mac, when we modify the scale of an…
SoftTimur
  • 5,630
  • 38
  • 140
  • 292
1
vote
1 answer

ReferenceError: Excel is not defined

I want to make an Office add-in with angularjs and angularjs-ui-router: The name of the module is app, and the router is as…
SoftTimur
  • 5,630
  • 38
  • 140
  • 292
1
vote
1 answer

Two open taskpanes side by side

I am making an Office add-in which has two ribbon buttons. Each button is linked to a different TaskpaneId, and clicking on each button opens a different taskpane:
SoftTimur
  • 5,630
  • 38
  • 140
  • 292
1
vote
1 answer

Communication of two taskpanes

I am making an Office add-in which has two ribbon buttons. Each button is linked to a different TaskpaneId, and clicking on each button opens a different taskpane:
SoftTimur
  • 5,630
  • 38
  • 140
  • 292
1
vote
1 answer

Open documents like pptx, potx, docs etc in browser, where documents hosted on VPN server

I want to open documents like pptx, potx, word documents etc in browser, where all documents are hosted on VPN server. I tried both https://docs.google.com/viewer and http://view.officeapps.live.com/op/view.aspx but didn't get any preview. I may be…
1
vote
0 answers

Office Task Pane app ajax call not working

I'm working on this TaskPane app for office, and I would like to get some data from a php function that resides on our domain. We're using the same php function in other apps, where I can just call it with some parameters passed to it in the URL,…
Laureant
  • 979
  • 3
  • 18
  • 47
1
vote
1 answer

Load document from local filesystem to Office online

I would like to load/save a file directly from the local filesystem in Word online (without uploading it to onedrive). Since this is not part of the default functionality I am trying to determine if this would be possible with an addin. The loading…
Remko
  • 7,214
  • 2
  • 32
  • 52
1
vote
2 answers

Create table in word with data which is in html form using office.js

I am creating an addin which displays data from database in table form using office.js. and in that table column can have data in html form. So my requirement is when i create the table and in that table if any column have html contents that should…
1
vote
1 answer

Sideload Javascript Addin (App) in Outlook for Ipad

Does anyone managed to sideload an Javascript Addin in Outlook for Ipad? I'm able to add it in Word and Excel, but I can't find any "Add-ins" button in Outlook for Ipad so I can't view the add-in even if I add it for the same account in Outlook…