Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

모달헤더의 X버튼에 스크립트로 클릭가능한 방법 #4

Open
harrymini opened this issue Mar 28, 2018 · 1 comment
Open

Comments

@harrymini
Copy link

안녕하세요.
저희는 공통 펑션으로 모달을 정의해서 쓰고 있는데요.
아래 소스가 지워진 뒤로 모달헤더의 X버튼에 직접 click()이벤트를 줄 수 없습니다.

this.activeModal.on(cfg.clickEventName, "[data-modal-header-btn]", function (e) {
btnOnClick.call(this, e || window.event, opts);
}.bind(this));

$('body').on('click', '.modal-close', function() {
  $(this).closest('.ax5modal').find('.fa-times-circle]').get(0).click();
}); // 모달 [bodyframe] 내부 버튼을 누르면 헤더 'fa-times-cirle' 버튼을 클릭 

혹은 콘솔창에 직접 강제 클릭
$('.ax5modal').find('.fa-times-circle]').get(0).click();
// 최신버전 실행안됨
// 2017 5월 버전 실행됨

@thomasJang
Copy link
Member

var myModal = new ax5.ui.modal();

myModal.close();

와 같은 방법으로 해결 하시는 것을 권장 합니다.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants