jqwidgets-scripts-custom
Version:
jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.
51 lines • 1.61 kB
HTML
<div id='jqxWidget' style="font-size: 13px; font-family: Verdana;">
<div style='margin-top: 10px;'>
Numeric
</div>
<jqxMaskedInput [theme]="'material'" #numericInput
[width]="250"
[height]="25">
</jqxMaskedInput>
<div style='margin-top: 10px;'>
Zip Code
</div>
<jqxMaskedInput [theme]="'material'" #zipCodeInput
[mask]="'#####-####'"
[width]="250"
[height]="25">
</jqxMaskedInput>
<div style='margin-top: 10px;'>
SSN
</div>
<jqxMaskedInput [theme]="'material'" #ssnInput
[mask]="'###-##-####'"
[width]="250"
[height]="25">
</jqxMaskedInput>
<div style='margin-top: 10px;'>
Phone Number
</div>
<jqxMaskedInput [theme]="'material'" #phoneInput
[mask]="'(###)###-####'"
[width]="250"
[height]="25">
</jqxMaskedInput>
<div style='margin-top: 10px;'>
IP Address (ex: 255.255.255.255)
</div>
<jqxMaskedInput [theme]="'material'" #regexInput
[mask]="'[0-2][0-5][0-5].[0-2][0-5][0-5].[0-2][0-5][0-5].[0-2][0-5][0-5]'"
[width]="250"
[height]="25">
</jqxMaskedInput>
<div style='margin-top: 10px;'>
Disabled
</div>
<jqxMaskedInput [theme]="'material'" #disabledInput
[disabled]="true"
[width]="250"
[height]="25">
</jqxMaskedInput>
</div>
<br />
<jqxButton [theme]="'material'" #clearButton (onClick)="clear()">Clear Values</jqxButton>