Angular Datatable - Custom filtering and Reset column order issues
Angular Datatable - Custom filtering and Reset column order issues
Hi All,
I am moving jQuery to Angular Datatables, but there are some features which I am not be able to implement correctly in angular.
Custom Filtering - In jQuery, I was using
table.draw() and $.fn.dataTable.ext.search.push(function() {})
https://datatables.net/examples/plug-ins/range_filtering.html .
In angular, didn't find any alternative to table.draw()
, according to documentation DTInstances.getLast() is also not an alternative. http://l-lin.github.io/angular-datatables/#/api
Similar issue in Reset Column ordering - I was using
table.colReorder.reset();
http://datatables.net/release-datatables/extensions/ColReorder/examples/reset.html
but in angular i didn't find any way get table
instance of datatable.
also need an alternative to post render callback draw
.
Thanks in advance :-)