I use Bootstrap Toggle , CSS and JavaScript loads fine, see image. However, when I use the built-in datatable (Done coloumn) custom JavaScript and styling does not work. I get data through Ajax
Datatable script
$('#sampleTable').DataTable( { "ajax": { "url": "/generalTodo", "dataSrc": "" }, "columns": [ { "sortable": true, className: 'centerize', render: function ( data, type, full, meta ) { return '<input type="checkbox" checked data-toggle="toggle" data-on="Ready" data-off="Not Ready" data-onstyle="success" data-offstyle="danger">'; } },.....

source share