Check documentation for the latest version of dhtmlxSuite onFocusChanged DHTMLX Docs

onFocusChanged

fires on changing the focus location in the Editor

void onFocusChanged(object state){ ... };

Parameters

stateobjectobject with the parameters of the text under focus

Example

myEditor.attachEvent("onFocusChanged", function(state){
    // your code here
});

Back to top