This section explains how to create a simple ProgressButton and demonstrate the basic usage of the ProgressButton component in an Angular environment.
The list of dependencies required to use the ProgressButton component in your application is given as follows:
|-- @syncfusion/ej2-angular-splitbuttons
|-- @syncfusion/ej2-angular-base
|-- @syncfusion/ej2-base
|-- @syncfusion/ej2-splitbuttons
|-- @syncfusion/ej2-popups
|-- @syncfusion/ej2-buttons
You can use Angular CLI to setup your Angular applications. To install Angular CLI use the following command.
npm install -g @angular/cli
Start a new Angular application using below Angular CLI command.
ng new my-app
cd my-app
To install ProgressButton package, use the following command.
npm install @syncfusion/ej2-angular-splitbuttons --save
The above package installs ProgressButton dependencies
which are required to render the component in the Angular environment.
Import ProgressButton module into Angular application(app.module.ts) from the package
@syncfusion/ej2-angular-splitbuttons
.
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
// Imported Syncfusion Progress button module from split buttons package
import { ProgressButtonModule } from '@syncfusion/ej2-angular-splitbuttons';
import { AppComponent } from './app.component';
@NgModule({
imports: [ BrowserModule, ProgressButtonModule ], // Registering EJ2 ProgressButtonModule.
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
Modify the template in app.component.ts
file to render the ProgressButton component.
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `<!-- To render progress button. -->
<button ejs-progressbutton content='Spin Left'></button>`
})
export class AppComponent {
}
Add ProgressButton component’s styles as given below in style.css
.
@import '../node_modules/@syncfusion/ej2-base/styles/material.css';
@import '../node_modules/@syncfusion/ej2-buttons/styles/material.css';
@import '../node_modules/@syncfusion/ej2-popups/styles/material.css';
@import '../node_modules/@syncfusion/ej2-splitbuttons/styles/material.css';
Run the application in the browser using the following command:
ng serve
The below example shows a basic ProgressButton component.
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `<!-- To render progress button. -->
<button ejs-progressbutton content='Spin Left'></button>`
})
export class AppComponent {
}
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { ProgressButtonModule } from '@syncfusion/ej2-angular-splitbuttons';
import { AppComponent } from './app.component';
/**
* Module
*/
@NgModule({
imports: [
BrowserModule,
ProgressButtonModule
],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule { }
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { enableProdMode } from '@angular/core';
import { AppModule } from './app.module';
enableProdMode();
platformBrowserDynamic().bootstrapModule(AppModule);
ProgressButton supports different styles, types and sizes like
Button
. In addition, it also supportstop
andbottom
icon positions.
You can enable the background filler UI by setting the enableProgress
property to true
.
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `<!-- To render progress button. -->
<button ejs-progressbutton content='Spin Left' [enableProgress]='true'></button>`
})
export class AppComponent {
}
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { ProgressButtonModule } from '@syncfusion/ej2-angular-splitbuttons';
import { AppComponent } from './app.component';
/**
* Module
*/
@NgModule({
imports: [
BrowserModule,
ProgressButtonModule
],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule { }
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { enableProdMode } from '@angular/core';
import { AppModule } from './app.module';
enableProdMode();
platformBrowserDynamic().bootstrapModule(AppModule);