소스 검색

Multi-add - enter not taking focus to next row - fix

Vijayakrishnan 3 년 전
부모
커밋
a11adc560b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      resources/views/app/patient/wizard-partials/common-script.blade.php

+ 1 - 1
resources/views/app/patient/wizard-partials/common-script.blade.php

@@ -839,7 +839,7 @@ function newRow(_tr) {
 
 function createAndMoveToNextRowInput(_td) {
     let tr = createRowAfter(_td.closest('tr'));
-    tr.find('td:eq(0)').find('input, textarea').first().focus();
+    tr.find('input, textarea').first().focus();
 }
 
 function moveToNextRowInput(_td, _forceCreate = false) {