Version

HeaderMouseDown Property

Gets sets name of javascript function which is called when header html element gets mousedown event of a browser.
Syntax
'Declaration
 
Public Property HeaderMouseDown As String
public string HeaderMouseDown {get; set;}
Example
// The client event HeaderMouseDown takes two parameters sender and e
// sender  is the object which is raising the event
// e is the EventArgs

  var count = 0;

  function WDW1_HeaderMouseDown(sender, e) {

      var wdw = $find("WebDialogWindow1");
      
      //Gets reference to header
      var header = wdw.get_header();

      count++;

      //Sets the text that will be displayed in the caption area of the header
      header.setCaptionText("The number of times header clicked is  "+ count);

  }
Me.WebDialogWindow1.ClientEvents.HeaderMouseDown = "WDW1_HeaderMouseDown"
this.WebDialogWindow1.ClientEvents.HeaderMouseDown = "WDW1_HeaderMouseDown";
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