DevExtreme Angular - Overview
The Toolbar is a widget containing items that usually manage screen content. Those items can be plain text or widgets.
The following code adds a simple Toolbar to your page. Three items are plain text and one is a Button widget.
HTML
TypeScript
- <dx-toolbar>
- <dxi-item
- widget="dxButton"
- location="before"
- [options]="buttonOptions">
- </dxi-item>
- <dxi-item
- text="Add"
- locateInMenu="always">
- </dxi-item>
- <dxi-item
- text="Change"
- locateInMenu="always">
- </dxi-item>
- <dxi-item
- text="Products"
- location="center">
- </dxi-item>
- </dx-toolbar>
- import { DxToolbarModule, DxButtonModule } from "devextreme-angular";
- // ...
- export class AppComponent {
- buttonOptions = {
- type: 'back',
- text: 'Back'
- };
- }
- @NgModule({
- imports: [
- // ...
- DxToolbarModule,
- DxButtonModule
- ],
- // ...
- })
Note that field names in these data source items are conventional. This provides a default tile appearance, which can be customized later.
See Also
- Configure a Widget: Angular | Vue | React | jQuery | AngularJS | Knockout | ASP.NET MVC 5 | ASP.NET Core
- Toolbar - Specify Item Type
- Toolbar - Specify Item Location
- Toolbar - Customize Item Appearance
- Toolbar API Reference
Feel free to share topic-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you for the feedback!
If you have technical questions, please create a support ticket in the DevExpress Support Center.