Hi. I'm trying to get a custom row filter linked to a select for one table. The filter is somehow tricky and i went for a row filter via
The code was working fine, except that it is being applied by other unrelated tables. (opes!)
While preparing a testcase i did find one almost identical, related with a previous question.
http://live.datatables.net/oyinin/3/edit#javascript,html,live
So, that is the same that I'm doing, I'm pushing a filter function into the afnFiltering array.
The question is, Could i add the filtering function to the afnFiltering array for just one of the tables?
I can get away with it, somehow. For instance i can get the desired behavior just checking the id of the table http://live.datatables.net/oyinin/139/edit, but it feels sub-optimal :-)
...there sure is a better way to archieve this, that does not involve calling the filter at all for the other tables..
Thanks is advance.
$.fn.dataTableExt.afnFiltering.push( ... )
The code was working fine, except that it is being applied by other unrelated tables. (opes!)
While preparing a testcase i did find one almost identical, related with a previous question.
http://live.datatables.net/oyinin/3/edit#javascript,html,live
So, that is the same that I'm doing, I'm pushing a filter function into the afnFiltering array.
The question is, Could i add the filtering function to the afnFiltering array for just one of the tables?
I can get away with it, somehow. For instance i can get the desired behavior just checking the id of the table http://live.datatables.net/oyinin/139/edit, but it feels sub-optimal :-)
...there sure is a better way to archieve this, that does not involve calling the filter at all for the other tables..
Thanks is advance.