james
james

Reputation: 491

Office Add-in Ribbon - Checkbox

I'm working on an Outlook 365 Add-in. I have a working Manifest XML that shows an icon with the icon responding to a function click. How would I go about adding a checkbox to the compose new email ribbon to the right of the button similar to the example below? I know how to do this VSTO, but looking how to do this using the Office 365 Add-in Javascript implementation. Thanks for any help!

Upvotes: 1

Views: 840

Answers (1)

Mavi Domates
Mavi Domates

Reputation: 4521

The developer wants to create a ribbon button with checkboxes on it. Unfortunately - this is not possible through office-js manifests.

You can check the add-in commands (ribbon buttons for office-js) documentation from here: https://github.com/OfficeDev/office-js-docs-pr/blob/master/docs/design/add-in-commands.md

From the documentation:

Control types

  • Simple buttons - trigger specific actions.
  • Menus - simple menu dropdown with buttons that trigger actions.

That capability doesn't exist today in office-js framework.

Upvotes: 1

Related Questions