DHTMLX Docs & Samples Explorer

Button Select Listed Option State

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: 200px;">
<select id="sel2"></select>
<input type="button" value="Enable" onclick="enable();">
<input type="button" value="Disable" onclick="disable();">
<input type="button" value="Is Enabled" onclick="isEnabled();">
</div>
<script>
var sel2 = document.getElementById("sel2");
var toolbar = new dhtmlXToolbarObject("toolbarObj");
toolbar.setIconsPath("../common/imgs/");
toolbar.loadXML("../common/dhxtoolbar_buttonselect.xml?etc=" + new Date().getTime(), updateList);
function getId() {
    var id = (sel2.options[sel2.selectedIndex].value).split(";");
    return id;
}
function enable() {
    var id = getId();
    toolbar.enableListOption(id[0], id[1]);
}
function disable() {
    var id = getId();
    toolbar.disableListOption(id[0], id[1]);
}
function isEnabled() {
    var id = getId();
    alert(toolbar.isListOptionEnabled(id[0], id[1]));
}
function updateList() {
    sel2.options.length = 0;
    toolbar.forEachItem(function(itemId) {
        if (toolbar.getType(itemId) == "buttonSelect") {
            toolbar.forEachListOption(itemId, function(listId) {
                if (toolbar.getTypeExt(listId) != "separator") {
                    sel2.options.add(new Option(itemId + " - " + listId, itemId + ";" + listId));
                }
            });
        }
    });
}
</script>