Skip to main content

ASPxClientRatingControl.ItemMouseOver Event

Occurs on the client side when the mouse cursor is moved into a rating control item.

Declaration

ItemMouseOver: ASPxClientEvent<ASPxClientRatingControlItemMouseEventHandler<ASPxClientRatingControl>>

Event Data

The ItemMouseOver event's data class is ASPxClientRatingControlItemMouseEventArgs. The following properties provide information specific to this event:

Property Description
index Gets the index of the item related to the event.

Remarks

When an end-user moves the mouse cursor into a rating control item, the ItemMouseOver event occurs. It is followed by the ASPxClientRatingControl.ItemMouseOut event, which occurs when the user moves the mouse pointer out of the item.

Write a ItemMouseOver event handler to perform specific actions on the client side each time the mouse cursor is moved into a rating control item. You can use the event parameter’s ASPxClientRatingControlItemMouseEventArgs.index property to identify the corresponding item.

See Also