Commit 3d1e6dfa162c4e365fce5ada6dc1d6ad0202e587

Authored by Marcelo Puebla
1 parent 05d5f6616f
Exists in master and in 1 other branch develop

Corrección de texto y agregado evento select en inputs numericos.

Showing 1 changed file with 7 additions and 7 deletions   Show diff stats
src/views/foca-busqueda-cliente-modal.html
... ... @@ -166,7 +166,7 @@
166 166 ng-model="cliente.CPO"
167 167 placeholder="Ingrese CP"
168 168 ng-required="true"
169   - ng-focus="focus(3)"
  169 + ng-focus="focus(3); $event.target.select();"
170 170 foca-focus="focused == 3"
171 171 ng-keypress="next($event.keyCode)"
172 172 teclado-virtual
... ... @@ -386,17 +386,17 @@
386 386 </div>
387 387 </div>
388 388 <div class="col-md-6 col-12 mt-2">
389   - <label>Telefono</label>
  389 + <label>Teléfono</label>
390 390 <div class="input-group">
391 391 <input
392 392 foca-tipo-input
393 393 limite-numeros-max="20"
394 394 class="form-control form-control-sm"
395   - placeholder="Ingrese Telefono"
  395 + placeholder="Ingrese Teléfono"
396 396 ng-model="cliente.TEL"
397 397 ng-required="true"
398 398 ng-keypress="next($event.keyCode)"
399   - ng-focus="focus(11)"
  399 + ng-focus="focus(11); $event.target.select();"
400 400 foca-focus="focused == 11"
401 401 teclado-virtual>
402 402 </div>
... ... @@ -494,7 +494,7 @@
494 494 ng-model="cliente.cuit1"
495 495 ng-required="true"
496 496 ng-keypress="pasarCampoCuit(1)"
497   - ng-focus="focus(14)"
  497 + ng-focus="focus(14); $event.target.select();"
498 498 foca-focus="focused == 14"
499 499 teclado-virtual
500 500 foca-tipo-input
... ... @@ -508,7 +508,7 @@
508 508 ng-keypress="pasarCampoCuit(2)"
509 509 ng-model="cliente.cuit2"
510 510 ng-required="true"
511   - ng-focus="focus(15)"
  511 + ng-focus="focus(15); $event.target.select();"
512 512 foca-focus="cuitActivo == 2 || focused == 15"
513 513 teclado-virtual
514 514 foca-tipo-input
... ... @@ -522,7 +522,7 @@
522 522 ng-keypress="pasarCampoCuit(3)"
523 523 ng-model="cliente.cuit3"
524 524 ng-required="true"
525   - ng-focus="focus(16)"
  525 + ng-focus="focus(16); $event.target.select();"
526 526 foca-focus="cuitActivo == 3 || focused == 16"
527 527 teclado-virtual
528 528 foca-tipo-input