<span class="d-inline-block" data-toggle="rol" data-bs-original-title="@roller">
<button class="btn btn-success btn-sm" type="button" disabled>Rol</button>
</span>
Hi,
You can try to use `KTApp.createBootstrapTooltips()` in the `drawCallback` function to reinitialize tooltips after each table redraw. Here's the code:
$(document).ready(function() {
$("#your-datatable").DataTable({
// Your DataTable initialization options here...
"drawCallback": function(settings) {
KTApp.createBootstrapTooltips();
}
});
});