Skip to main content

ASPxClientImageSlider.ThumbnailItemClick Event

Occurs on the client side when a thumbnail is clicked.

Declaration

ThumbnailItemClick: ASPxClientEvent<ASPxClientImageSliderItemEventHandler<ASPxClientImageSlider>>

Event Data

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

Property Description
item Gets an item object related to the event.

Remarks

Write a ThumbnailItemClick event handler to perform specific actions on the client side when a thumbnail is clicked. Note that this event fires immediately after the left mouse button is released. If the button is released when the mouse pointer is not over a thumbnail, the event doesn’t fire.

The ThumbnailItemClick event provides an argument of the ASPxClientImageSliderItemEventArgs type. The event argument’s ASPxClientImageSliderItemEventArgs.item property allows you to identify an image slider’s item, which thumbnail currently being clicked.

See Also