0

I'm using datatables plugin but I have a problem with the search. When I do look like this:

$("#productomostrar").change(function() {
   tablalistaproductos.fnFilter($(this).val(),null,false,false,false,false);
});

to not be displayed in the search box on the table. But when I try to use the search box does not respect me for the previous search. Any help? I do not want to use ajax because all data by loading the page and I have them loaded. Thank you.

4

1 回答 1

0

API中所述- 函数的第一个参数是事件对象 - 因此this指的是事件对象,而不是更改的元素。

于 2012-10-31T12:02:04.540 回答