Editor.ClientEvents.MouseUp = "Editor_MouseUp"
Editor.ClientEvents.MouseUp = "Editor_MouseUp";
// The client event 'MouseUp' 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_MouseUp(sender, e) { window.status = "Mouse Up"; }