I’m embedding Collabora Online in my web application using an <iframe>
and the Tabbed UI mode. I’m looking to simplify the user interface by hiding some of the top-level tabs — specifically the “Help” and “References” tabs.
I’ve successfully used the postMessage
API with MessageId: "Hide_Menu_Item"
to hide menu items in Compact UI, like so:
{
"MessageId": "Hide_Menu_Item",
"SendTime": 1677600490227,
"Values": {
"id": "help"
}
}
However, this approach doesn’t seem to work in Tabbed UI, and I haven’t found any documentation indicating support for hiding tabs in that layout.
- Is there any supported way to hide or disable specific tabs (like “Help” or “References”) in the Tabbed UI, either through
postMessage
, WOPI properties, or some other API? - If not, is there a recommended alternative (e.g., customizing the source if self-hosted)?
- Are there any future plans to support this type of UI customization in Tabbed UI via
postMessage
or configuration?
I want to preserve the Tabbed UI for its modern layout, but reduce UI clutter for our users.
Thanks in advance for any guidance!