This question is locked. New answers and comments are not allowed.
Hello,
I am currently tasked with adding wildcard and boolean filtering ability that works with the MVC Grid. I understand that the grid supports these functionalities, but is there support for wildcards at all?
My current filtering works such that for each field there is a input to filter by "Contains" from a textbox, above each field. I then build an ajax request that looks something like..
(my javascript line is below)
| var pn = $("#FilterPartNumber").val(); |
| var desc = $("#FilterDescription").val(); |
| var project = $("#Projects").val(); |
| var grid = $("#ItemsGrid").data("tGrid"); |
| desc = stripQuotes(desc); |
| pn = stripQuotes(pn); |
| project = stripQuotes(project); |
| grid.filterBy = "substringof(PartNumber,\'" + pn + "\')~and~substringof(Description,\'" + desc + "\')~and~substringof(PartNumber,\'" + project + "\')"; |
| grid.pageTo(1); |
Is there anything currently existing in the controls that lets me pass wildcards ie "abc*123" or etc and parses them automatically, does anyone have recommnedations for existing products that will do this, or do I need to write a parser myself? Thanks :)