aspnetbootstrap-devexpress-dot-web-dot-bootstrap-1f89913e.md
Represents the control that allows you to supply your web application with a lightweight adaptive toolbar interface.
Namespace : DevExpress.Web.Bootstrap
Assembly : DevExpress.Web.Bootstrap.v25.2.dll
NuGet Package : DevExpress.Web.Bootstrap
[DXClientDocumentationProviderWeb("BootstrapToolbar")]
[ToolboxTabName("DX.25.2: Bootstrap Controls")]
public class BootstrapToolbar :
BootstrapMenuBase
<ToolboxTabName("DX.25.2: Bootstrap Controls")>
<DXClientDocumentationProviderWeb("BootstrapToolbar")>
Public Class BootstrapToolbar
Inherits BootstrapMenuBase
The following members return BootstrapToolbar objects:
This example demonstrates the basic functionality of the Toolbar control.
BootstrapToolbar class.The image below shows the result:
function onDefaultToolbarItemClick(s, e) {
dxbsDemo.showToast("The button '" + e.item.name + "' has been clicked.");
}
<dx:BootstrapToolbar runat="server">
<Items>
<dx:BootstrapToolbarItem Name="Copy" IconCssClass="fa fa-copy" />
<dx:BootstrapToolbarItem Name="Paste" IconCssClass="fa fa-paste" />
<dx:BootstrapToolbarItem Name="Item1" Text="Item" />
<dx:BootstrapToolbarItem Name="Link" Text="Link" NavigateUrl="#DefaultToolbar" />
<dx:BootstrapToolbarItem Name="Left" BeginGroup="true" IconCssClass="fa fa-align-left" />
<dx:BootstrapToolbarItem Name="Center" IconCssClass="fa fa-align-center" />
<dx:BootstrapToolbarItem Name="Right" IconCssClass="fa fa-align-right" />
</Items>
<ClientSideEvents ItemClick="onDefaultToolbarItemClick" />
</dx:BootstrapToolbar>
Show 11 items
Object Control WebControl ASPxWebControlBase ASPxWebControl ASPxDataWebControlBase ASPxHierarchicalDataWebControl ASPxMenuBase ASPxMenu BootstrapMenuBase BootstrapToolbar
See Also