A Angular based Text Box component used to specify an input field where the user can enter data.
- Browser Support
- Getting started
- Usage
- Available Props
- Methods
- Want to Contribute?
- Collection of Components
- Changelog
- License
- Keywords
83.0 ✔ | 77.0 ✔ | 13.1.1 ✔ | 83.0 ✔ | 11.9 ✔ |
Install the npm package:
Install the npm package:
npm install angular-weblineindia-text-box
#OR
yarn add angular-weblineindia-text-box
Use the <angular-weblineindia-text-box>
component:
Add in app.module.ts file
import { NgModule } from "@angular/core";
import { AngularWeblineindiaTextBoxModule } from "angular-weblineindia-text-box";
@NgModule({
imports: [AngularWeblineindiaTextBoxModule],
})
export class AppModule {}
Add in app.component.ts file
export class AppComponent {
myRegex: RegExp = /^[a-zA-Z0-9]+$/;
onFocusHandler(event: any): void {}
onBlurHandler(event: any): void {}
onChangeHandler(event: any): void {
}
onKeyPressHandler(event: KeyboardEvent): void {
}
onKeyDownHandler(event: KeyboardEvent): void {
}
onKeyUpHandler(event: KeyboardEvent): void {
}
Add in app.component.html file
<angular-weblineindia-text-box id="myInputId" name="myInputName" value="initial value" classname="my-custom-class" placeholder="Enter text here" [disabled]="false" [maxlength]="25" [regex]="myRegex" [isnumberonly]="false" [required]="true" (focus)="onFocusHandler($event)" (blur)="onBlurHandler($event)" (change)="onChangeHandler($event)" (KeyPress)="onKeyPressHandler($event)" (KeyDown)="onKeyDownHandler($event)" (KeyUp)="onKeyUpHandler($event)"></angular-weblineindia-text-box>
Add in app.component.css file
::ng-deep .my-custom-class {
color: aqua;
}
Prop | Type | default | Description |
---|---|---|---|
id | String | ID for the input | |
name | String | Nam for the input | |
value | string | Value of the component | |
classname | object | Class to the input | |
placeholder | String | The input field will get this placeholder text | |
disabled | Boolean | false | Disable component |
maxlength | Number | 25 | The input maxlength |
regex | RegExp | The input regex | |
isnumberonly | Boolean | false | The input field will get number value |
required | Boolean | false | The input field will required or not |
Name | Description |
---|---|
focus | Gets triggered when the autocomplete input field receives focus. |
blur | Gets triggered when the autocomplete input field loses focus. |
change | Gets triggered when the autocomplete results got changed. |
KeyPress | Gets triggered when a key gets pressed. |
KeyDown | Gets triggered when a key gets down. |
KeyUp | Gets triggered when a key gets up. |
- Created something awesome, made this code better, added some functionality, or whatever (this is the hardest part).
- Fork it.
- Create new branch to contribute your changes.
- Commit all your changes to your branch.
- Submit a pull request.
We have built many other components and free resources for software development in various programming languages. Kindly click here to view our Free Resources for Software Development
Detailed changes for each release are documented in CHANGELOG.md.
angular-weblineindia-text-box, textbox, input, angular, angular-component, textbox-component, textarea, text-box-input