I have a bootgrid table with large number of rows. Is it possible to apply filter on the table?
e.g. each row has an attribute, say type. I want to display type="A" rows only.
many thx
steve
I have a bootgrid table with large number of rows. Is it possible to apply filter on the table?
e.g. each row has an attribute, say type. I want to display type="A" rows only.
many thx
steve
Try this solution:
Enable Ajax ajax : true
.
Add this custom search value to your ajax requests like this:
$('#grid').bootgrid({
ajax : true,
url : '/this/is/the/ajax/url',
otherStuff : ... ,
requestHandler : function (request) {
request.searchVal = $('#type').val("A");
return request;
}
});