ASPxClientGridToolbarItemClickEventArgs.handled Property
In This Article
Specifies whether the toolbar item click is handled manually, so no default processing is required.
#Declaration
TypeScript
handled: boolean
#Property Value
Type | Description |
---|---|
boolean |
|
#Remarks
Set the handled property to true
if you want to handle the toolbar item click manually. If this property is set to false
, the grid applies custom actions after the ToolbarItemClick event.
<dx:ASPxGridView ID="ASPxGridView1" runat="server" ...>
<ClientSideEvents ToolbarItemClick="onToolbarItemClick" />
...
</dx:ASPxGridView>
See Also