DHTMLX Docs & Samples Explorer

Text Item Manipulation

Source
<script type="text/javascript" src="../../codebase/dhtmlxcommon.js"></script>
<script type="text/javascript" src="../../codebase/dhtmlxtoolbar.js"></script>
<link rel="stylesheet" type="text/css" href="../../codebase/skins/dhtmlxtoolbar_dhx_skyblue.css"></link>
 
<div id="toolbarObj"></div>
<div style="margin-top: 20px;">
<select id="sel"></select>
<input type="button" value="Show" onclick="show();">
<input type="button" value="Hide" onclick="hide();">
<input type="button" value="Is Visible" onclick="isVisible();">
</div>
<script>
var sel = document.getElementById("sel");
var toolbar = new dhtmlXToolbarObject("toolbarObj");
toolbar.setIconsPath("../common/imgs/");
toolbar.loadXML("../common/dhxtoolbar_text.xml?etc=" + new Date().getTime(), updateList);
function show() {
    toolbar.showItem(sel.options[sel.selectedIndex].value);
}
function hide() {
    toolbar.hideItem(sel.options[sel.selectedIndex].value);
}
function isVisible() {
    alert(toolbar.isVisible(sel.options[sel.selectedIndex].value));
}
function updateList() {
    sel.options.length = 0;
    toolbar.forEachItem(function(itemId) {
        if (toolbar.getType(itemId) == "text") {
            sel.options.add(new Option(toolbar.getItemText(itemId), itemId));
        }
    });
}
</script>