Version

ItemMouseOut Property

Syntax
'Declaration
 
Public Property ItemMouseOut As String
public string ItemMouseOut {get; set;}
Example
WebDropDown1.ClientEvents.ItemMouseOut = "WebDropDown_ItemMouseOut"
WebDropDown1.ClientEvents.ItemMouseOut = "WebDropDown_ItemMouseOut";
// The client event 'ItemMouseOut' takes two parameters sender and e
// sender  is the object which is raising the event
// e is the DropDownControlEventArgs
 
  function WebDropDown_ItemMouseOut(sender, e) {

     //Gets the drop-down item that has mouse out of it
      var item = e.get_value();

      //Gets the text of the drop-down item
      var text = item.get_text();

      //Gets the index of the drop-down item
      var index = item.get_index();
      alert("Mouse is out of the drop-down item '" + text + "' at index " + index);  
  }
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