Commit aabf7011bf9bed5ed02e185ff23494280034a3ad
1 parent
92edea2c0a
Exists in
master
.
Showing
1 changed file
with
11 additions
and
4 deletions
Show diff stats
src/views/modal-cobradores.html
... | ... | @@ -6,14 +6,21 @@ |
6 | 6 | <div class="input-group col-lg-6 pr-0 my-2"> |
7 | 7 | <input |
8 | 8 | ladda="searchLoading" |
9 | - class="btn btn-outline-secondary" | |
10 | - type="button" | |
11 | - ng-click="busquedaPress(13)" | |
9 | + type="text" | |
10 | + class="form-control form-control-sm" | |
11 | + placeholder="Busqueda" | |
12 | + ng-model="filters" | |
13 | + ng-change="search()" | |
14 | + ng-keydown="busquedaDown($event.keyCode)" | |
15 | + ng-keypress="busquedaPress($event.keyCode)" | |
16 | + foca-focus="selectedCobrador == -1" | |
17 | + ng-focus="selectedCobrador = -1" | |
18 | + teclado-virtual | |
19 | + id="search" | |
12 | 20 | > |
13 | 21 | <div class="input-group-append"> |
14 | 22 | <button |
15 | 23 | ladda="searchLoading" |
16 | - data-spinner-color="#FF0000" | |
17 | 24 | class="btn btn-outline-secondary" |
18 | 25 | type="button" |
19 | 26 | ng-click="busquedaPress(13)" |