Tooltips or other jQuery Tools don't work with datatable with fnReloadAjax
Tooltips or other jQuery Tools don't work with datatable with fnReloadAjax
Hi,
I have searched everywhere on this forum, or on Google, many solutions but zero worked for me...
I red that this is a problem with the DOM destroying from Datatable. What could be the solution ?
I want to use tooltips from Bootstrap in some cells; Table is auto-reloaded every 15sec using fnReloadAjex method.
If you can help me
I have searched everywhere on this forum, or on Google, many solutions but zero worked for me...
I red that this is a problem with the DOM destroying from Datatable. What could be the solution ?
I want to use tooltips from Bootstrap in some cells; Table is auto-reloaded every 15sec using fnReloadAjex method.
If you can help me
This discussion has been closed.
Replies
Allan
Thank you for trying to help me :) .
My page look like this :
"sAjaxSource": 'directory/tabledata'
[...]
setInterval( function () {
oTable.fnReloadAjax();
}, 15000 );
} );
[...]
// call jQuery, datatables.js, tooltip.js etc...
$('.ltooltip').tooltip()
----
So i don't think that i "reinitialise" the tooltips, but i'm not sure how to do it, i don't understand very well what you mean.
Allan
Thank you so much Allan! I want to say that datatable is one of the best website plugin ever!
I have a little question:
is it possible to stop the reloading, when user is reading the tooltip, (cursor on the tooltip link) ?