aspnet-devexpress-dot-web-dot-aspxtreelist-dot-aspxtreelist-36d3c325.md
Fires after a toolbar item has been clicked.
Namespace : DevExpress.Web.ASPxTreeList
Assembly : DevExpress.Web.ASPxTreeList.v25.2.dll
NuGet Package : DevExpress.Web
public event TreeListToolbarItemClickEventHandler ToolbarItemClick
Public Event ToolbarItemClick As TreeListToolbarItemClickEventHandler
The ToolbarItemClick event's data class is TreeListToolbarItemClickEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| Handled | Specifies whether the toolbar item click is handled manually, so no default processing is required. |
| Item | Gets the toolbar item related to the event. |
Write a ToolbarItemClick event handler to perform specific actions when a toolbar item has been 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 toolbar item, the event doesn’t fire.
You can use the event parameter’s TreeListToolbarItemClickEventArgs.Item property to identify the clicked toolbar item.
On the client side, you can respond to a toolbar item click using the ASPxClientTreeList.ToolbarItemClick event.
See Also