jqwidgets-scripts-custom
Version:
jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.
25 lines (20 loc) • 845 B
HTML
<jqxDataTable [theme]="'material'" #myDataTable
[width]="getWidth()" [source]="dataAdapter" [columns]="columns"
[sortable]="true" [pageable]="true" [columnsResize]="true">
</jqxDataTable>
<div style="font-size: 13px; font-family: Verdana; width: 600px; margin-top: 10px">
<div style="float: left; width: 300px">
<h4>Shipped Date</h4>
<jqxDropDownList [theme]="'material'" (onChange)="dateFormats($event)"
[height]="25" [autoDropDownHeight]="true"
[selectedIndex]="1" [source]="dateSource">
</jqxDropDownList>
</div>
<div style="float: left; width: 300px">
<h4>Freight</h4>
<jqxDropDownList [theme]="'material'" (onChange)="numberFormats($event)"
[height]="25" [autoDropDownHeight]="true"
[selectedIndex]="1" [source]="numberSource">
</jqxDropDownList>
</div>
</div>