<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_input.xml?etc=" + new Date().getTime(), updateList);
function getId() {
var id = sel.options[sel.selectedIndex].value;
return id;
}
function show() {
var id = getId();
toolbar.showItem(id);
}
function hide() {
var id = getId();
toolbar.hideItem(id);
}
function isVisible() {
var id = getId();
alert(toolbar.isVisible(id));
}
function updateList() {
sel.options.length = 0;
toolbar.forEachItem(function(itemId) {
if (toolbar.getType(itemId) == "buttonInput") {
sel.options.add(new Option(itemId, itemId));
}
});
}
</script>