Skip to main content
A newer version of this page is available. .
Tab

ASPxGridView.Toolbars Property

Gets the collection of toolbars in the ASPxGridView control.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

[DefaultValue(null)]
public GridViewToolbarCollection Toolbars { get; }

Property Value

Type Default Description
GridViewToolbarCollection *null*

A GridViewToolbarCollection object which represents the collection of toolbars within the grid.

Remarks

The ASPxGridView stores toolbars (which are GridViewToolbar class instances) in its Toolbars collection. You can add or remove toolbars, change their availability and position, and populate them with toolbar items (GridViewToolbarItem class instances) using the GridViewToolbar.Items property. Toolbar items can trigger standard grid commands (that is data item editing, deletion, creation, etc.) and any custom actions, if required (GridViewToolbarItem.Command).

Use the following properties to specify the toolbar settings:

See Also