How to hide the top-down triangle to the right of toolbar navItem

I hope to add some subitems to a toolbar icon, to simulate the use on phone.
BUT the triangle was automatically added.
https://snippet.dhtmlx.com/3ivdiha0?text=toolbar

You may hide it using the css:

<style>
    .dhx_toolbar-button__caret{
        display: none
    }
</style>

Here is the updated example:
https://snippet.dhtmlx.com/xomqb3f9

1 Like