Commit be4dfba45becbc731057221ff56d5a1853bd54e2
Exists in
master
and in
1 other branch
Merge branch 'master' into 'develop'
Arreglo en botones con icono de calendario para seleccionar fechas. See merge request !11
Showing
5 changed files
Show diff stats
src/views/informe-chofer.html
... | ... | @@ -13,9 +13,13 @@ |
13 | 13 | <small class="col-md-2 col-4 text-left my-1">Fecha Desde</small> |
14 | 14 | <div class="col-md-4 col-8 input-group mb-3"> |
15 | 15 | <div class="input-group-prepend"> |
16 | - <div class="input-group-text"> | |
16 | + <button | |
17 | + class="input-group-text" | |
18 | + type="button" | |
19 | + ng-click="datepickerOpen = true" | |
20 | + > | |
17 | 21 | <i class="fa fa-calendar"></i> |
18 | - </div> | |
22 | + </button> | |
19 | 23 | </div> |
20 | 24 | <input |
21 | 25 | class="form-control form-control-sm" |
... | ... | @@ -34,9 +38,13 @@ |
34 | 38 | <small class="col-md-2 col-4 text-left my-1">Fecha Hasta</small> |
35 | 39 | <div class="col-md-4 col-8 input-group mb-3"> |
36 | 40 | <div class="input-group-prepend"> |
37 | - <div class="input-group-text"> | |
41 | + <button | |
42 | + class="input-group-text" | |
43 | + type="button" | |
44 | + ng-click="datepicker2Open = true" | |
45 | + > | |
38 | 46 | <i class="fa fa-calendar"></i> |
39 | - </div> | |
47 | + </button> | |
40 | 48 | </div> |
41 | 49 | <input |
42 | 50 | class="form-control form-control-sm" |
src/views/informe-hoja-ruta.html
... | ... | @@ -14,9 +14,13 @@ |
14 | 14 | <small class="col-md-2 col-4 text-left my-1">Fecha Desde</small> |
15 | 15 | <div class="col-md-4 col-8 input-group mb-3"> |
16 | 16 | <div class="input-group-prepend"> |
17 | - <div class="input-group-text"> | |
17 | + <button | |
18 | + class="input-group-text" | |
19 | + type="button" | |
20 | + ng-click="datepickerOpen = true" | |
21 | + > | |
18 | 22 | <i class="fa fa-calendar"></i> |
19 | - </div> | |
23 | + </button> | |
20 | 24 | </div> |
21 | 25 | <input |
22 | 26 | class="form-control form-control-sm" |
... | ... | @@ -36,9 +40,13 @@ |
36 | 40 | <small class="col-md-2 col-4 text-left my-1">Fecha Hasta</small> |
37 | 41 | <div class="col-md-4 col-8 input-group mb-3"> |
38 | 42 | <div class="input-group-prepend"> |
39 | - <div class="input-group-text"> | |
43 | + <button | |
44 | + class="input-group-text" | |
45 | + type="button" | |
46 | + ng-click="datepicker2Open = true" | |
47 | + > | |
40 | 48 | <i class="fa fa-calendar"></i> |
41 | - </div> | |
49 | + </button> | |
42 | 50 | </div> |
43 | 51 | <input |
44 | 52 | class="form-control form-control-sm" |
src/views/informe-litros-km-unidad.html
... | ... | @@ -15,9 +15,13 @@ |
15 | 15 | <small class="col-md-2 col-4 text-left my-1">Fecha Desde</small> |
16 | 16 | <div class="col-md-4 col-8 input-group mb-3"> |
17 | 17 | <div class="input-group-prepend"> |
18 | - <div class="input-group-text"> | |
18 | + <button | |
19 | + class="input-group-text" | |
20 | + type="button" | |
21 | + ng-click="datepickerOpen = true" | |
22 | + > | |
19 | 23 | <i class="fa fa-calendar"></i> |
20 | - </div> | |
24 | + </button> | |
21 | 25 | </div> |
22 | 26 | <input |
23 | 27 | class="form-control form-control-sm" |
... | ... | @@ -36,9 +40,13 @@ |
36 | 40 | <small class="col-md-2 col-4 text-left my-1">Fecha Hasta</small> |
37 | 41 | <div class="col-md-4 col-8 input-group mb-3"> |
38 | 42 | <div class="input-group-prepend"> |
39 | - <div class="input-group-text"> | |
43 | + <button | |
44 | + class="input-group-text" | |
45 | + type="button" | |
46 | + ng-click="datepicker2Open = true" | |
47 | + > | |
40 | 48 | <i class="fa fa-calendar"></i> |
41 | - </div> | |
49 | + </button> | |
42 | 50 | </div> |
43 | 51 | <input |
44 | 52 | class="form-control form-control-sm" |
src/views/informe-productividad.html
... | ... | @@ -17,9 +17,13 @@ |
17 | 17 | <small class="col-md-2 col-4 text-left my-1">Fecha Desde</small> |
18 | 18 | <div class="col-md-4 col-8 input-group mb-3"> |
19 | 19 | <div class="input-group-prepend"> |
20 | - <div class="input-group-text"> | |
20 | + <button | |
21 | + class="input-group-text" | |
22 | + type="button" | |
23 | + ng-click="datepickerOpen = true" | |
24 | + > | |
21 | 25 | <i class="fa fa-calendar"></i> |
22 | - </div> | |
26 | + </button> | |
23 | 27 | </div> |
24 | 28 | <input |
25 | 29 | class="form-control form-control-sm" |
... | ... | @@ -38,9 +42,13 @@ |
38 | 42 | <small class="col-md-2 col-4 text-left my-1">Fecha Hasta</small> |
39 | 43 | <div class="col-md-4 col-8 input-group mb-3"> |
40 | 44 | <div class="input-group-prepend"> |
41 | - <div class="input-group-text"> | |
45 | + <button | |
46 | + class="input-group-text" | |
47 | + type="button" | |
48 | + ng-click="datepicker2Open = true" | |
49 | + > | |
42 | 50 | <i class="fa fa-calendar"></i> |
43 | - </div> | |
51 | + </button> | |
44 | 52 | </div> |
45 | 53 | <input |
46 | 54 | class="form-control form-control-sm" |
src/views/informe-reparto-optimo.html
... | ... | @@ -15,9 +15,13 @@ |
15 | 15 | <small class="col-md-2 col-4 text-left my-1">Fecha Desde</small> |
16 | 16 | <div class="col-md-4 col-8 input-group mb-3"> |
17 | 17 | <div class="input-group-prepend"> |
18 | - <div class="input-group-text"> | |
18 | + <button | |
19 | + class="input-group-text" | |
20 | + type="button" | |
21 | + ng-click="datepickerOpen = true" | |
22 | + > | |
19 | 23 | <i class="fa fa-calendar"></i> |
20 | - </div> | |
24 | + </button> | |
21 | 25 | </div> |
22 | 26 | <input |
23 | 27 | class="form-control form-control-sm" |
... | ... | @@ -36,9 +40,13 @@ |
36 | 40 | <small class="col-md-2 col-4 text-left my-1">Fecha Hasta</small> |
37 | 41 | <div class="col-md-4 col-8 input-group mb-3"> |
38 | 42 | <div class="input-group-prepend"> |
39 | - <div class="input-group-text"> | |
43 | + <button | |
44 | + class="input-group-text" | |
45 | + type="button" | |
46 | + ng-click="datepicker2Open = true" | |
47 | + > | |
40 | 48 | <i class="fa fa-calendar"></i> |
41 | - </div> | |
49 | + </button> | |
42 | 50 | </div> |
43 | 51 | <input |
44 | 52 | class="form-control form-control-sm" |