I am using bootstrap tooltip inside my datatable. It worked well until I added scrollX:true
. Since I did that, my tootip is covered by the table, I cannot make it visible, although I added data-container="body"
:
var table = $('.table').DataTable({
"scrollX": true,
"columnDefs": [
{"render": function (data, type, row) {
return '<p data-toggle="tooltip" data-placement="top" data-containter="body" title="edit" >edit</p>';
}
],
....