Getting Started with the Kendo UI for Angular ToolBar
The Kendo UI ToolBar represents a graphical element for holding button elements and enables the user to easily structure and access them.
Basic Usage
The following example demonstrates the ToolBar in action.
Installation
Either use the quick setup (Angular CLI) or manually add the package.
Quick Setup with Angular CLI
Angular CLI supports the addition of packages through the ng add
command which executes in one step the set of otherwise individually needed commands.
ng add @progress/kendo-angular-toolbar
Manual Setup
Download and install the package.
npm install --save @progress/kendo-angular-toolbar @progress/kendo-angular-buttons @progress/kendo-angular-popup @progress/kendo-angular-common @progress/kendo-licensing
- Once installed, import the ToolBarModule in your application root or feature module.
import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { ToolBarModule } from '@progress/kendo-angular-toolbar'; import { AppComponent } from './app.component'; @NgModule({ bootstrap: [AppComponent], declarations: [AppComponent], imports: [BrowserModule, BrowserAnimationsModule, ToolBarModule] }) export class AppModule {}
You are required to install one of the Kendo UI themes for Angular to style your component. For more information on how to add the styles, refer to the section on styling.
Follow the instructions on the Kendo UI for Angular My License page to activate your license. You can skip this step if your application already contains a Kendo UI license file.
Dependencies
The ToolBar package requires you to install the following peer dependencies in your application:
- @angular/common
- @angular/core
- rxjs
- @progress/kendo-angular-l10n
- @progress/kendo-angular-buttons
- @progress/kendo-angular-popup
- @progress/kendo-angular-common
- @progress/kendo-licensing
The ToolBar package utilizes the Angular animation system, which supports a specific set of browsers.