Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by wfcyydy on Sep 22, 2009 19:20
open dhtmlx forum
there is no 'hideBar()' in dhtmlXMenuObject

..
Answer posted by Alex (support) on Sep 23, 2009 02:29

You can try to hide/show container where menu is initialized:

menu = new dhtmlXMenuObject("menuObj");
...
function hide(){
 document.getElementById("menuObj").style.display="none"
}
function show(){
 document.getElementById("menuObj").style.display=""
}



Answer posted by wfcyydy on Oct 10, 2009 02:16