Skip to main content

ASPxClientImageSlider.ItemClick Event

Fires after an image item has been clicked within the image area.

Declaration

ItemClick: ASPxClientEvent<ASPxClientImageSliderItemEventHandler<ASPxClientImageSlider>>

Event Data

The ItemClick 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 ItemClick event handler to perform specific actions on the client side each time an image item is clicked within the image area. 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 an item, the event doesn’t fire. You can use the event parameter’s property to identify the clicked item.

Note

If the ItemClick is handled, an item can not be changed by clicking its left or right side.

See Also