var myTable = $('#table_02').DataTable();
$(document).on('click', 'a.remove-row', function (e) {
e.preventDefault();
var rows = $(this).closest('tr');
bootbox.dialog({
message: '<h4 class="mb-10">삭제하시겠습니까?</h4>',
buttons: {
main: {
label: "취소",
className: "btn-default",
callback: function callback() {}
},
danger: {
label: "확인",
className: "btn-primary",
callback: function callback() {
rows.remove();
}
}
}
});
});
'javascript' 카테고리의 다른 글
[dataTables.js] 테이블 스크롤 vertical scrollY (0) | 2020.05.13 |
---|---|
[dataTables.js] overflow-x scroll (0) | 2020.05.06 |
[dataTables.js] row 노출개수 lengthMenu custom (0) | 2020.04.22 |
[dataTables.js] 테이블 요소 배치 dom positioning (0) | 2020.04.22 |
[dataTables.js] 페이지네이션 html 수정 pagination custom (0) | 2020.04.22 |
댓글