Check documentation for the latest version of dhtmlxSuite onEditorAccess DHTMLX Docs

onEditorAccess

fires when the user accesses the editor body

void onEditorAccess(string name,string type,object ev,object editor,object form);
namestringthe item's name
typestringthe type of the accessing action (e.g. "mousedown","focus","mouseup","click", "blur")
evobjectthe event object
editorobjectthe editor instance
formobjectthe form instance

Example

myForm.attachEvent("onEditorAccess", function(name, type, ev, editor, form){
    //your code here
});

Back to top