fires when the user accesses the editor body
| name | string | the item's name |
| type | string | the type of the accessing action (e.g. "mousedown","focus","mouseup","click", "blur") |
| ev | object | the event object |
| editor | object | the editor instance |
| form | object | the form instance |
myForm.attachEvent("onEditorAccess", function(name, type, ev, editor, form){
//your code here
});
Back to top