Version

MouseUp Property (TextEditorClientEvents)

Gets sets name of javascript function which is called when input field or spin button gets mouseup event of a browser.
Syntax
'Declaration
 
Public Property MouseUp As String
public string MouseUp {get; set;}
Example
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"; 

}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also