ASPxClientMenuBase.ItemMouseOver Event
Occurs on the client side when the mouse cursor is moved into a menu item.
Declaration
ItemMouseOver: ASPxClientEvent<ASPxClientMenuItemMouseEventHandler<ASPxClientMenuBase>>
Event Data
The ItemMouseOver event's data class is ASPxClientMenuItemMouseEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
htmlElement | Gets the HTML object that contains the processed item. |
item | Gets the menu item object related to the event. Inherited from ASPxClientMenuItemEventArgs. |
Remarks
When an end-user moves the mouse cursor into a menu item, the ItemMouseOver event occurs. It is followed by the ASPxClientMenuBase.ItemMouseOut event which occurs when the user moves the mouse pointer out of the menu item.
Write a ItemMouseOver event handler to perform specific actions on the client side each time the mouse cursor is moved into a menu item. You can use the event parameter’s ASPxClientMenuItemEventArgs.item property to identify the corresponding menu item.
See Also