dhtmlx Menu add the hyperlink to open new ie

Hi,



When I click the menu ,



Such as “File ->open”, it can link to yahoo.com.



thanks

Hello,

You should add “onClick” event and then use something like:
document.location.href = “http://yahoo.com”;

To open url in a new window you should create a form element “on the fly”,
set target to “blank”, action to “http://…”, and then sumbit it.