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

BootstrapCardView.Toolbars Property

Gets the collection of toolbars in the BootstrapCardView control.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v19.2.dll

Declaration

[PersistenceMode(PersistenceMode.InnerProperty)]
[DefaultValue(null)]
public BootstrapCardViewToolbarCollection Toolbars { get; }

Property Value

Type Default Description
BootstrapCardViewToolbarCollection *null*

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

Remarks

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

Use the following properties to specify the toolbar settings:

See Also