taffy-coustom-ui
Version:
31 lines (23 loc) • 829 B
HTML
<jqxGrid #myGrid (onFilter)="onFilter()"
[width]="getWidth()" [source]="dataAdapter" [columns]="columns" [filterable]="true"
[sortable]="true" [ready]="ready" [autoshowfiltericon]="true">
</jqxGrid>
<div style="margin-top: 30px;">
<div style="width: 200px; float: left; margin-right: 10px;">
<jqxButton (onClick)="clearFiltering()" [width]="120">
Remove Filter
</jqxButton>
<jqxCheckBox (onChange)="onFilterBackground($event)"
[checked]="true" [height]="25">
Filter Background
</jqxCheckBox>
<jqxCheckBox (onChange)="onFilterIcon($event)"
[checked]="false" [height]="25">
Show All Filter Icons
</jqxCheckBox>
</div>
<div style="float: left;">
Event Log:
<jqxPanel #myPanel [width]="300" [height]="80"></jqxPanel>
</div>
</div>