Hi, Is there a specific way to activate/configure the SearchPanes Plugin with Datatables ? I'm trying the basic initialization, and i'm always having the message : "No SearchPanes"
...
"options"=>array(
"order"=>array(
array(0,"asc"),
),
"paging"=>true,
"pageLength" => 20,
"searching"=>true,
"dom" => 'PBfrtip',
"buttons" => [
"copy", "csv", "excel", "pdf"
],
),
"plugins"=>array("Buttons", "SearchPanes"),
...
I tried also to rebuild searchpanes like this, but it also doesn't work :
...
<script type="text/javascript">
KoolReport.load.onDone(function() {
$('#table').DataTable().searchPanes.rebuildPane();
} );
</script>
...
Thx for your help,