0

I am developing an add-in with Office JS, In need add combobox when click in a bottom but I dont see this options it is possible

add combobox with OfficeJS

Eugene Astafiev
  • 47,483
  • 3
  • 24
  • 45
  • Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. – Community Oct 31 '22 at 14:21

1 Answers1

0

Combo boxes are not supported in OfficeJS for ribbon customizations. Supported control types are:

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

Read more about ribbon customizations in the Add-in commands for Excel, PowerPoint, and Word article.

But you may consider creating a task pane with any controls. There are not limitations on the controls used for task panes (unlike ribbon).

Remember that you can post or vote for an existing feature request on Tech Community where they are considered when the Office dev team go through the planning process.

Eugene Astafiev
  • 47,483
  • 3
  • 24
  • 45