Hi , I have enabled popover on click of a row element , but due to pagination(client side) when i click on next page , the data table redraws and so popover function needs to be called again.
$('[data-toggle="popover"]').popover();
i checked the datatables website and turns out , you need to call this function whenever you redraw datatable:
drawCallback: function() {
$('[data-toggle="popover"]').popover();
}
How do i enable it using koolreports because the same syntax throws me an error?