我是ASP.NET的初学者
我不知道如何做到这一点,请求帮助我
到目前为止,我只有过滤gridview的代码但不起作用
<script type="text/javascript">
$(document).ready(function () {
$('.buscar').each(function (i) {
$(this).quicksearch("[id*=grdProductos] tr:not(:has(th))", {
'testQuery': function (query, txt, row) {
return $(row).children(":eq(" + 3 + ")").text().toLowerCase().indexOf(query[0].toLowerCase()) != -1;
}
});
});
});
</script>