Check documentation for the latest version of dhtmlxSuite onHelp DHTMLX Docs

onHelp

fires when the user clicks the “help” button

void onHelp(object win);
winobjectwindow instance

Example

myWins.attachEvent("onHelp", function(win){
    // your code here
});

Related samples

Details

win is dhtmlXWindowsCell instance, please check dhtmlXWindowsCell API for details

Back to top