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

VerticalGridSettings.Toolbars Property

Gets the collection of toolbars in the VerticalGridSettings control.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v18.2.dll

Declaration

public MVCxVerticalGridToolbarCollection Toolbars { get; }

Property Value

Type Description
MVCxVerticalGridToolbarCollection

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

Remarks

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

See Also