##Mask
By applying igxMask
directive on a text input field, the developer can control user input and format the visible value, based on configurable mask rules. It provides different input options and ease in use and configuration.
Mask Demo
Note
To start using Ignite UI for Angular components in your own projects, make sure you have configured all necessary dependencies and have performed the proper setup of your project. You can learn how to do this in the installation topic.
Usage
igxMask
directive is used on an input of type text.
To get started with the Ignite UI for Angular Mask directive, let's first import the IgxMaskModule
and IgxInputGroupModule
in our app.module.ts file.
// app.module.ts
...
import { IgxMaskModule, IgxInputGroupModule } from 'igniteui-angular';
@NgModule({
...
imports: [..., IgxInputGroupModule, IgxMaskModule]
...
})
export class AppModule {}
Supported Built-in Mask Rules
Mask Character | Description |
---|---|
0 | requires a digit (0-9) |
9 | requires a digit (0-9) or a space |
# | requires a digit (0-9), plus (+), or minus (-) sign |
L | requires a letter (a-Z) |
? | requires a letter (a-Z) or a space |
A | requires an alphanumeric (0-9, a-Z) |
a | requires an alphanumeric (0-9, a-Z) or a space |
& | any keyboard character (excluding space) |
C | any keyboard character |
Apply Mask on Input
In the following example, we apply a phone number with an extension mask to an input.
<!--sample.component.html-->
<igx-input-group>
<igx-prefix>
<igx-icon>phone</igx-icon>
</igx-prefix>
<label igxLabel>Phone</label>
<input igxInput type="text" [igxMask]="'(####) 00-00-00 Ext. 9999'"/>
</igx-input-group>
If the sample is configured properly, an input with the applied formatting mask appears.
Bind to Formatted/Raw Value
Use the includeLiterals
input to configure which input value (formatted or raw) to bind in your form when a specific mask is applied. By default, includeLiterals
is set to false and the raw value is used.
<!--sample.component.html-->
<igx-switch [(ngModel)]="includeLiterals" (change)="clear()">
Include Literals
</igx-switch>
<igx-input-group>
<label igxLabel>
Social Security Number
</label>
<input #ssn name="socialSecurityNumber" type="text"
igxInput
[igxMask]="'###-##-####'"
[(ngModel)]="socialSecurityNumber"
[includeLiterals]="includeLiterals" />
</igx-input-group>
<p *ngIf="socialSecurityNumber.length > 0">Value: {{ socialSecurityNumber }}</p>
// sample.component.ts
public socialSecurityNumber: string = "123-45-6789";
public includeLiterals: boolean = true;
public clear() {
this.socialSecurityNumber = "";
}
Validate Masked Values
In addition to setting a mask to an input, you can validate the entered value as well. The following example implements masks, validation and notification for invalid data using the Mask directive and Snack Bar component.
<!--sample.component.html-->
<form class="mask-sample" action="/" method="POST">
<h4 class="form-title">Personal Data</h4>
<igx-input-group>
<label igxLabel for="name">Name</label>
<input igxInput name="name" type="text" required
[(ngModel)]="person.name" />
</igx-input-group>
<igx-input-group>
<label igxLabel for="email">Birthday</label>
<input igxInput #dateInput name="birthday" type="text"
[igxMask]="'00/00/0000'"
[(ngModel)]="person.birthday"
(blur)="validateDate(dateInput, snackbar)" />
</igx-input-group>
<igx-input-group>
<label igxLabel for="socialSecurityNumber">Social Security Number</label>
<input igxInput #ssn name="socialSecurityNumber" type="text"
[igxMask]="'###-##-####'"
[(ngModel)]="person.socialSecurityNumber"
(blur)="validateSSN(ssn, snackbar)" />
</igx-input-group>
<igx-snackbar #snackbar></igx-snackbar>
</form>
// sample.component.ts
public person: Person;
constructor() {
this.person = {
birthday: null,
name: "John Doe",
socialSecurityNumber: ""
};
}
public ngOnInit() {}
public validateDate(dateInput, snackbar) {
if (!this.isDateValid(dateInput.value)) {
this.notify(snackbar, "Invalid Date", dateInput);
}
}
public validateSSN(ssnInput, snackbar) {
if (!this.isSSNValid(ssnInput.value)) {
this.notify(snackbar, "Invalid SSN", ssnInput);
}
}
private isDateValid(date) {
return (new Date(date).toLocaleString() !== "Invalid Date");
}
private isSSNValid(ssn) {
const ssnPattern = /^[0-9]{3}\-?[0-9]{2}\-?[0-9]{4}$/;
return (ssn.match(ssnPattern));
}
private notify(snackbar, message, input) {
snackbar.message = message;
snackbar.show();
}
// person.ts
export class Person {
constructor(
public name: string,
public socialSecurityNumber: string,
public birthday: Date
) { }
}
Apply additional formatting on focus and blur
In addition to the default mask behavior, the user can implement his own custom pipes and take advantage of the focusedValuePipe
and displayValuePipe
input properties, to transform the value to a desired output when the input gets or loses focus. This will not affect the underlying model value. Let's demonstrate how this can be achieved!
Implement two pipes that will append/remove a '%' sign at the end of the displayed value:
@Pipe({ name: 'displayFormat' })
export class DisplayFormatPipe implements PipeTransform {
transform(value: any): string {
let val = value;
if (val.indexOf('%') === -1) {
val += '%';
}
return val;
}
}
@Pipe({ name: 'inputFormat' })
export class InputFormatPipe implements PipeTransform {
transform(value: any): string {
let val = value;
if (val.indexOf('%') !== -1) {
val = val.replace(new RegExp('%', 'g'), '');
}
return val;
}
}
Pass an instance of each pipe to the focusedValuePipe
and displayValuePipe
input properties as follows:
value = 1230;
displayFormat = new DisplayFormatPipe();
inputFormat = new InputFormatPipe();
<igx-input-group>
<label igxLabel for="email">Increase</label>
<input igxInput type="text" [(ngModel)]="value"
[igxMask]="'00.00'"
[focusedValuePipe]="inputFormat"
[displayValuePipe]="displayFormat"/>
</igx-input-group>
As a result, a '%' sign should be appended to the value on blur (i.e. when the user clicks outside the input) and will be removed once the input gets focus!
Adding a placeholder
The user can also take advantage of the placeholder
input property, which serves the purpose of the native input placeholder attribute. If no value is provided for the placeholder
, the value set for the mask is used.
value = null;
<igx-input-group>
<label igxLabel>Date</label>
<input igxInput type="text" [(ngModel)]="value"
[igxMask]="'00/00/0000'"
[placeholder]="'dd/mm/yyyy'"/>
</igx-input-group>
API References
Additional Resources
Our community is active and always welcoming to new ideas.