salix/modules/invoiceIn/front/serial-search-panel/index.html

27 lines
795 B
HTML
Raw Normal View History

2023-03-27 12:29:22 +00:00
<vn-side-menu side="right">
<vn-horizontal class="input">
<vn-textfield
label="Days ago"
ng-model="$ctrl.filter.search"
vn-focus
ng-keydown="$ctrl.onKeyPress($event)">
</vn-textfield>
</vn-horizontal>
<vn-horizontal class="input">
<vn-textfield
label="Serial"
ng-model="$ctrl.filter.search"
ng-keydown="$ctrl.onKeyPress($event)">
</vn-textfield>
</vn-horizontal>
<div class="chips">
<vn-chip
ng-if="$ctrl.filter.search"
removable="true"
on-remove="$ctrl.removeItemFilter('search')"
class="colored">
<span>Id/Name: {{$ctrl.filter.search}}</span>
</vn-chip>
</div>
</vn-side-menu>