jqwidgets-scripts-custom
Version:
jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.
13 lines (12 loc) • 827 B
HTML
<jqxFormattedInput [theme]="'material'" #myFormattedInput
[width]="200" [height]="25" [radix]="'decimal'" [spinButtons]="false"
[value]="330000" [decimalNotation]="'exponential'">
</jqxFormattedInput>
<div style="margin-top: 20px">
<jqxButton [theme]="'material'" style="float: left" (onClick)="getDecimal()" [width]="185">Get Decimal Value</jqxButton>
<jqxButton [theme]="'material'" style="margin-left: 5px; float: left" (onClick)="getExponential()" [width]="185">Get Exponential Notation</jqxButton>
<br />
<br />
<jqxButton [theme]="'material'" style="float: left" (onClick)="getScientific()" [width]="185">Get Scientific Notation</jqxButton>
<jqxButton [theme]="'material'" style="margin-left: 5px; float: left" (onClick)="getEngineering()" [width]="185">Get Engineering Notation</jqxButton>
</div>