Hi, I want to show checkboxes as my first cloumn in datatables, so i am using the plugin-
Hi, I want to show checkboxes as my first cloumn in datatables, so i am using the plugin-
Maggi12
Posts: 3Questions: 1Answers: 0
plugin- datatables.select.min.js ,but its giving me an error: Uncaught TypeError: Cannot read property 'row' of undefined. The check is working but i can't uncheck the checkbox ,when i click on the checked checkbox. Can anyone help me on this.
thanks in advance
This discussion has been closed.
Answers
Can you show the code? and preferably throw it in a live DT example?
Here is my code:
function callable(d) {
hideLoader();
"bJQueryUI": true,
"sScrollY": "572px",
"sPaginationType": "full_numbers",
"aLengthMenu": [50, 100],
"iDisplayLength": 50,
"bProcessing": true,
"bDeferRender": true,
"iDisplayEnd": 20,
"StateSave": true,
"ajax": function(data, callback, settings) {
datatableAjaxRequest(callback, uri);
},
"columns": [
{
```
sWidth: "2%",
data: null,
defaultContent: '',
className: 'select-checkbox',
orderable: false,
Here is my code and i want it to support multiple checkbox selection.