Check documentation for the latest version of dhtmlxSuite onFocus DHTMLX Docs

onFocus

fires when a window was focused on

void onFocus(object win);
winobjectwindow instance

Example

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

Related samples

Details

win is dhtmlXWindowsCell instance, please check dhtmlXWindowsCell API for details

Back to top