kimsQ / hd-steel

RC 마크업
http://kimsq.github.io/hd-steel/
0 stars 0 forks source link

modal 내부의 input에 auto focus 처리 관련 #84

Closed gitaeks closed 8 years ago

gitaeks commented 8 years ago

부서검색, 사원검색 등. 검색을 위해 호출되는 modal, popup 은 검색폼에 auto focus 처리해야 하는 경우가 있습니다.

버튼에 의해 호출되는 modal, popup 등의 컴포넌트 내부의 input 에 auto focus를 하려면 아래와 같이 처리해야 합니다. 참고 부탁드립니다.

<input type="search" id="인풋아이디">

$('#모달 아이디').on('shown.rc.modal', function () {
  setTimeout(function() {
    $('#인풋아이디').focus();
  }, 50);
})