Getting started with Angular Textbox component
4 Apr 20239 minutes to read
This section briefly explains about how to create a simple TextBox through CSS classes using Angular seed repository.
Dependencies
The following list of dependencies are required to use the TextBox component in your application.
|-- @syncfusion/ej2-angular-inputs
|-- @syncfusion/ej2-angular-base
|-- @syncfusion/ej2-inputs
|-- @syncfusion/ej2-base
Setup angular environment
Angular provides the easiest way to set angular CLI projects using Angular CLI
tool.
Install the CLI application globally to your machine.
npm install -g @angular/cli
Create a new application
ng new syncfusion-angular-textbox
By default, it install the CSS style base application. To setup with SCSS, pass –style=scss argument on create project.
Example code snippet.
ng new syncfusion-angular-textbox --style=scss
Navigate to the created project folder.
cd syncfusion-angular-textbox
Installing Syncfusion TextBox Package
Syncfusion packages are distributed in npm as @syncfusion
scoped packages. You can get all the Angular Syncfusion package from npm link.
Currently, Syncfusion provides two types of package structures for Angular components,
- Ivy library distribution package format
- Angular compatibility compiler(Angular’s legacy compilation and rendering pipeline) package.
Ivy library distribution package
Syncfusion Angular packages(>=20.2.36
) has been moved to the Ivy distribution to support the Angular Ivy rendering engine and the package are compatible with Angular version 12 and above. To download the package use the below command.
Add @syncfusion/ej2-angular-inputs
package to the application.
npm install @syncfusion/ej2-angular-inputs --save
Angular compatibility compiled package(ngcc)
For Angular version below 12, you can use the legacy (ngcc) package of the Syncfusion Angular components. To download the ngcc
package use the below.
Add @syncfusion/ej2-angular-inputs@ngcc
package to the application.
npm install @syncfusion/ej2-angular-inputs@ngcc --save
To mention the ngcc package in the package.json
file, add the suffix -ngcc
with the package version as below.
@syncfusion/ej2-angular-inputs:"20.2.38-ngcc"
Note: If the ngcc tag is not specified while installing the package, the Ivy Library Package will be installed and this package will throw a warning.
Adding TextBox to the application
- Modify the template as HTML input element with
e-input
class inapp.component.ts
file to render theTextBox
component.
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `<input class="e-input" type="text" placeholder="Enter Name" />`
})
export class AppComponent { }
Adding CSS reference
The following CSS files are available in ../node_modules/@syncfusion
package folder.
This can be referenced in [src/styles.css] using following code.
@import '../node_modules/@syncfusion/ej2-base/styles/material.css';
@import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
@import '../node_modules/@syncfusion/ej2-angular-inputs/styles/material.css';
The Custom Resource Generator (CRG) is an online web tool, which can be used to generate the custom script and styles for a set of specific components.
This web tool is useful to combine the required component scripts and styles in a single file.
Adding icons to the TextBox
You can create a TextBox with icon as a group by creating the parent div element with the class e-input-group
and add the icon element as span with the class e-input-group-icon
. For detailed information, refer to the Groups section.
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `<div class="wrap">
<div class="e-input-group">
<input class="e-input" name='input' type="text" (focus)="focusIn($event.target)"
placeholder = "Enter Date" (blur)="focusOut($event.target)"/>
<span class="e-input-group-icon e-input-popup-date" (mouseup)="onMouseUp($event.target)" (mousedown)="onMouseDown($event.target)"></span>
</div>
</div>`
})
export class AppComponent {
public focusIn(target: HTMLElement): void {
target.parentElement.classList.add('e-input-focus');
}
public focusOut(target: HTMLElement): void {
target.parentElement.classList.remove('e-input-focus');
}
public onMouseDown(target: HTMLElement): void {
target.classList.add('e-input-btn-ripple');
}
public onMouseUp(target: HTMLElement): void {
let ele: HTMLElement = target;
setTimeout(
() => {ele.classList.remove('e-input-btn-ripple'); },
500);
}
}
Running the application
After completing the configuration required to render a basic TextBox, run the following command to display the output in your default browser.
ng serve
The following example illustrates the output in your browser.
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `<div class="wrap">
<div class="e-input-group">
<input class="e-input" name='input' type="text" (focus)="focusIn($event.target)"
placeholder = "Enter Date" (blur)="focusOut($event.target)"/>
<span class="e-input-group-icon e-input-popup-date" (mouseup)="onMouseUp($event.target)" (mousedown)="onMouseDown($event.target)"></span>
</div>
</div>`
})
export class AppComponent {
public focusIn(target: HTMLElement): void {
target.parentElement.classList.add('e-input-focus');
}
public focusOut(target: HTMLElement): void {
target.parentElement.classList.remove('e-input-focus');
}
public onMouseDown(target: HTMLElement): void {
target.classList.add('e-input-btn-ripple');
}
public onMouseUp(target: HTMLElement): void {
let ele: HTMLElement = target;
setTimeout(
() => {ele.classList.remove('e-input-btn-ripple'); },
500);
}
}
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
/**
* Module
*/
@NgModule({
imports: [
BrowserModule
],
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);
Floating label
The floating label TextBox floats the label above the TextBox after focusing, or filled with value in the TextBox.
You can create the floating label TextBox by using the floatLabelType API.
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `<div class="wrap">
<h4>Floating label as auto</h4>
<div class='textboxes'>
<ejs-textbox placeholder="First Name" floatLabelType="Auto"></ejs-textbox>
</div>
<h4>Floating label as always</h4>
<div class='textboxes'>
<ejs-textbox placeholder="First Name" floatLabelType="Always"></ejs-textbox>
</div>
</div>`
})
export class AppComponent { }
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import {TextBoxModule} from '@syncfusion/ej2-angular-inputs';
/**
* Module
*/
@NgModule({
imports: [
BrowserModule,
TextBoxModule
],
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);