Standalone buttons with tabs on a ribbon bar

Currently we have a ribbon bar with a bunch of tabs on it. Is it possible to create an additional button on a ribbon bar that isn’t part of one of the tabs? Ideally I’d like to have one dedicated button in my ribbon bar that’s always accessible/visible, regardless of which tab i’m on. Our ribbon setup is similar to the dhtmlx.com/docs/products/dhtmlxR … bject.html demo. I feel like i should be able to add another button outside of the ‘tabs: []’ logic.

Hello
There is no native approach, so i suggest you to add dhxtoolbar button the next way:

[code]t = document.createElement(“DIV”);
t.style.position = “absolute”;
t.style.height = “23px”;
t.style.top = “-1px”;
t.style.right = “15px”;
t.style.zIndex = 10000001;

myRibbon = new dhtmlXRibbon(data);
myRibbon._tabbar.tabsArea.children[1].appendChild(t);
tb = new dhtmlXToolbarObject(t,“dhx_skyblue”);
tb.setIconsPath("…/imgs/");
tb.addButton(“username”, 0, “Special button”);[/code]

Hey that will work for what I need, thanks!

You are welcome!