Is it possible to redefine the close button of dhtmlxwindow, so that on click of the close button the window will just hide not closed properly?
This forum is so much muted…
Why no one bothers to answer any??
Yes, it is possible. Use event handler “onClose”:
dhxWins.attachEvent("onClose", function(win){
win.hide();
});
thanks Darya…