Flexigrid is a nice jQuery grid, and pretty customizable, but the quick search feature only allows for exact searches (as far as I can tell). Anybody know a fix or workaround for this? I've tried adding wildcard characters to the "p.query" string, but no luck.
FYI: This is for use with a MySQL database and PHP, so the wildcard I tried to add was '%'.
Here's the "doSearch" function in the flexigrid.js:
doSearch: function () {
p.query = $('input[name=q]', g.sDiv).val();
p.qtype = $('select[name=qtype]', g.sDiv).val();
p.newp = 1;
this.populate();
},
Thanks for the help!