salix/modules/order/front/catalog-search-panel/index.html

29 lines
885 B
HTML
Raw Normal View History

<div class="vn-pa-lg" style="min-width: 10em">
2020-02-19 10:57:39 +00:00
<form name="form" ng-submit="$ctrl.onSearch()">
<vn-horizontal>
<vn-autocomplete
vn-one
label="Tag"
2019-10-09 22:47:29 +00:00
ng-model="filter.tagFk"
2020-02-19 10:57:39 +00:00
selection="filter.tagSelection"
url="Tags"
show-field="name"
2020-02-19 10:57:39 +00:00
value-field="id"
required="true">
<tpl-item>{{name}}</tpl-item>
</vn-autocomplete>
</vn-horizontal>
<vn-horizontal>
<vn-textfield
vn-one
label="Value"
2020-02-19 10:57:39 +00:00
ng-model="filter.value"
required="true">
</vn-textfield>
</vn-horizontal>
<vn-horizontal class="vn-mt-lg">
<vn-submit label="Search"></vn-submit>
</vn-horizontal>
</form>
</div>