【Rails】Data Confirm Modal - backdrop
backdrop이란?
직역하면 극장막으로, 웹에서는 모달을 열 때 배경의 검은 곳을 말합니다.
backdrop을 클릭해도 모달이 숨겨지지 않는 방법
dataConfirmModal.confirm({
title: 'Are you sure?',
text: 'Really do this?',
commit: 'Yes do it',
cancel: 'Not really',
zIindex: 10099,
onConfirm: function() { alert('confirmed') },
onCancel: function() { alert('cancelled') },
onHide: function() { alert('hidden') },
// これを追加することで、backdropをクリックしてもモーダルが非表示にならない
backdrop: 'static'
});
참고
dataConfirmModal.confirm({
title: 'Are you sure?',
text: 'Really do this?',
commit: 'Yes do it',
cancel: 'Not really',
zIindex: 10099,
onConfirm: function() { alert('confirmed') },
onCancel: function() { alert('cancelled') },
onHide: function() { alert('hidden') },
// これを追加することで、backdropをクリックしてもモーダルが非表示にならない
backdrop: 'static'
});
참고
Reference
이 문제에 관하여(【Rails】Data Confirm Modal - backdrop), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/syukan3/items/9f360fba52ba0ca3c699텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)