JAVA

[JAVA] Uncaught TypeError: Cannot read property 'nTr' of undefined 해결하기 - Java Datatable 체크박스 풀림 현상

예나부기 2022. 5. 13.

DataTable로 테이블을 구현 하였으나, 체크박스를 클릭해도 바로 풀리는 증상이 발견되었다.

F12로 관리자 모드 > 콘솔을 확인 해 보니, 아래와 같은 에러가 발생하고 있었다.

 

Uncaught TypeError: Cannot read property 'nTr' of undefined

 

내가 도움을 받았던 링크

https://datatables.net/forums/discussion/41307/datatables-checkbox-selection-with-columns-configuration-option

 

DataTables Checkbox Selection with Columns Configuration Option

This page: https://datatables.net/extensions/select/examples/initialisation/checkbox.html

datatables.net

해당 링크에서 아래와 같은 답변을 확인할 수 있다.

select CSS and JS include가 되어 있는지 체크하라!

 

놀랍게도, select를 포함해 주었더니 정상 작동을 한다.

<script src="${wp}/resources/vendor/datatables/select/js/dataTables.select.min.js"></script>

 

댓글