Click event in dhtmlxmenu3.0

Hi,
when you click on an item in the menu how do you get it to go to a cell in the layout.
I can use layout1.cells(“b”).attachURL(“inbox.cfm”); to do it from layout cell to layout cell but how do I do it from the menu item?

Thanks
Asif

Hi
You need the next approach:

dhxMenu.attachEvent("onClick", function(id){ if(id == "myID"){ dhxLayout.cells("a").attachURL("myURL.html"); } });