I'm trying to make an external filter from an external form
Until then, for a simple generic search, jquery datatables
uses the parameter 'sSearch'
For this, I just do
var grid = new $.fn.dataTable.Api('.e-grid');
grid.search('Teste');
grid.draw();
All right, but I need to make a somewhat more complex filter, which the filter form data is not in the column. I'm talking about this, because every more complex filter that I found to be an example was just the columns that already existed in the datatable
The question is, how do I pass other parameters to this filter? besides the default that is sSearch
NOTE: The filter is via Ajax
, and as Server Side I am using Asp.net MVC