ASPxClientNewsControl.TailClick Event
Fires after an item’s tail has been clicked.
Declaration
TailClick: ASPxClientEvent<ASPxClientNewsControlItemEventHandler<ASPxClientNewsControl>>
Event Data
The TailClick event's data class is ASPxClientNewsControlItemEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
htmlElement | Gets the HTML object that contains the processed item. |
htmlEvent | Gets a DHTML event object that relates to the processed event. |
name | Gets the name that uniquely identifies the processed item. |
processOnServer | Specifies whether or not to process the event on the server. Inherited from ASPxClientProcessingModeEventArgs. |
Remarks
Write a TailClick event handler to perform specific actions on the client side each time a news item’s tail is clicked within the ASPxNewsControl. 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 tail, the event doesn’t fire. You can use the event parameter’s properties to identify the clicked item and specify whether a postback should be generated to pass the event processing to the server side.
See Also