- Angular UI Development with PrimeNG
- Sudheer Jonna Oleg Varaksin
- 153字
- 2021-07-15 17:33:03
Making a part of the mask optional
Till now, all the examples of input masks have shown that all the characters in a mask are mandatory. It is also possible that you can make a part of the mask optional with the use of the question mark (?) character. Anything listed after the question mark within a mask definition will be treated as an optional input. A common use case is displaying the phone number with an optional extension number, as follows:
<span>Phone Ext</span>
<p-inputMask mask="(999) 999-9999? x99999" [(ngModel)]="optional"
name="optionalmask" placeholder="(999) 999-9999? x99999">
</p-inputMask>
Once the user finishes the input by reaching the question mark character and blurs the component, the rest of the validation will be skipped. That is, the input up to that part won't be erased. For example, phone number inputs, such as (666) 234-5678 and (666) 234-5678? x1230 will be valid inputs for the mask's optional case.
The complete demo application with instructions is available on GitHub at
https://github.com/ova2/angular-development-with-primeng/tree/master/chapter3/inputmask.
https://github.com/ova2/angular-development-with-primeng/tree/master/chapter3/inputmask.
推薦閱讀
- Visual C++串口通信開發(fā)入門與編程實(shí)踐
- ASP.NET Core 5.0開發(fā)入門與實(shí)戰(zhàn)
- Java游戲服務(wù)器架構(gòu)實(shí)戰(zhàn)
- Learning Linux Binary Analysis
- Building a Recommendation Engine with Scala
- 精通網(wǎng)絡(luò)視頻核心開發(fā)技術(shù)
- jQuery開發(fā)基礎(chǔ)教程
- Elasticsearch Server(Third Edition)
- Python Data Analysis Cookbook
- AppInventor實(shí)踐教程:Android智能應(yīng)用開發(fā)前傳
- Corona SDK Mobile Game Development:Beginner's Guide(Second Edition)
- Test-Driven Machine Learning
- Spring Security Essentials
- PHP 7從零基礎(chǔ)到項(xiàng)目實(shí)戰(zhàn)
- OpenStack Networking Essentials