Version

HeaderMouseOver Property

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

 function WDW1_HeaderMouseOut(sender, e) {

       var wdw = $find("WebDialogWindow1");

       //Gets reference to the header
       var header = wdw.get_header();

       //Sets the text that will be displayed in the caption area of the header
       header.setCaptionText("The mouse is out of the header");

       //Sets width and height of the dialog
       wdw.setSize(250,250);

   }

// The client events HeaderMouseOver takes two parameters sender and e
// sender  is the object which is raising the event
// e is the EventArgs
  
function WDW1_HeaderMouseOver(sender, e) {

       var wdw = $find("WebDialogWindow1");

       //Gets reference to the header
       var header = wdw.get_header();

       //Sets the text that will be displayed in the caption area of the header
       header.setCaptionText("The mouse is over the header");

       //Sets width and height of the dialog
       wdw.setSize(500, 500);


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