Editor.ClientEvents.Focus = "Editor_Focus"
Editor.ClientEvents.Focus = "Editor_Focus";
// The client event 'Focus' takes two parameters sender and e // sender is the object which is raising the event // e is the EventArgs //ID of the editor raising the event is "Editor" function Editor_Focus(sender, e) { alert("Editor gained focus!"); }