2X faster development
The ultimate Angular UI toolkit to boost your development speed.
A quick start project that helps you to create an Angular 11 Button with a minimal code configurations. Angular 11 Button
The following section explains the steps required to create a simple angular 11 button component. Prerequisites
Before start, we need following items to create Angular Button in Angular 11 application.
Dependencies
The angular 11 button created from the Syncfusion ej2-angular-buttons package from npmjs, which are distributed in npm as @syncfusion scoped packages. Creating Angular Project
npm install -g @angular/cli@11.2.3
Note: If you would like to follow and run the application in Angular 6 or Angular 5 or Angular 4, you need to replace the CLI command version number with the corresponding angular version number.
npm install -g @angular/cli@<CLI VERSION>
ng new angular11-app cd angular11-app
Adding Angular Button
npm install @syncfusion/ej2-angular-buttons --save
The --save command will instruct the NPM to include a button package inside the dependencies section of the package.json.
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { ButtonModule } from '@syncfusion/ej2-angular-buttons'; import { AppComponent } from './app.component'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, ButtonModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }
@import "../node_modules/@syncfusion/ej2/styles/material.css"; @import "../node_modules/@syncfusion/ej2-buttons/styles/material.css";
import { Component } from '@angular/core'; @Component({ selector: 'app-root', template: `<button ejs-button>Button</button>` }) export class AppComponent {}
ng serve --open
Once the files are compiled successfully, it will serve the site at localhost:4200 Screenshot: Change Button Type
To change the default button to flat button, set the cssClass to e-flat and text content of the button is set using content property. import { Component } from '@angular/core'; @Component({ selector: 'app-root', template: `<button ejs-button cssClass='e-flat' content='Button'></button>` }) export class AppComponent {}
Summary
Refer to our documentation and online samples for more features. If you have any queries, please let us know in comments below. You can also contact us through our Support forum or Direct-Trac. We are happy to assist you! |
2X faster development
The ultimate Angular UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.