Open new window dhtmlxmenu

Hi,

I’m new in dhtmlx, I used dhtmlxmenu with loadXML function. How can I create link to open new window with attributes like window size, scrollbar yes or no, etc ?

this is part of my xml script :

Thanks in advance ,

tito

Hi,

href tag doesn’t provide such possibility. You may use userdata tag instead and process onClick event manually to open window with the necessary attributes:

[code]

menu.attachEvent(“onClick”,function(id){
var href = this.getUserData(id,“href”);
/your code/
})[/code]