Badge on tabbar button?

Is it possible to place a badge on a tabbar button? I tried to add a span to the value property of the option with webix_badge css style, but the badge ends up in the top right corner of the tabbar, not the tab button. See also https://snippet.webix.com/lg4l7whp

as webix_badge has position:absolute, you need to put it into container with position:relative. like that <div style="position:relative">Tab1 <span class="webix_badge">11</span></div>

Thank you, this solution works perfectly :slight_smile: