12-02-2019 06:13 PM
Is there a way to disable the drawer panel from opening when clicking on a left menu item?
12-03-2019 11:15 AM
I sort of figured out how to do this by manually creating the menu button and appending it to outside of the "drawer"
var menuIcon = document.createElement("help-menu-icon");
menuIcon.setAttribute("icon", "icons:help");
menuIcon.setAttribute("label", "Help");
menuIcon.setAttribute("link", "myurl.com");
var link = document.createElement("a");
link.setAttribute("href", "https://myurl.com");
link.setAttribute("target", "_blank");
menuIcon.appendChild(link);
var icon = document.createElement("paper-icon-button");
icon.setAttribute("id","button");
icon.setAttribute("name","help");
icon.setAttribute("tabindex", "0");
icon.setAttribute("aria-disabled", "false")
link.appendChild(icon);
var toolTip = document.createElement("nuxeo-tooltip");
toolTip.setAttribute("for","button");
toolTip.setAttribute("position","right");
toolTip.setAttribute("offset","0");
toolTip.setAttribute("animation-delay","0");
toolTip.setAttribute("label","Help");
link.appendChild(toolTip);
const app = document.querySelector('nuxeo-app');
app.$.logo.appendChild(menuIcon);
12-20-2019 08:41 AM
[Jackie A](https
12-20-2019 11:26 AM
I created a custom element and contributed it to the bundle, and this javascript was just read in an observer function - this is a big hack
12-21-2019 10:38 AM
Thanks, [Jackie A](https
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.