ASPxClientImageSlider.ItemClick Event
In This Article
Fires after an image item has been clicked within the image area.
#Declaration
TypeScript
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 Item
See Also