I would like to implement a filterrow that is more intuitive and easier to use than the built in functionality. Something like the filterrow of the famous tablesorter plugin
With the tablesorter plugin the user can type filter expressions with wildcards and operators. Here are two example:
The filter expression ‘>10’ would filter all records with column values greater than 10.
The filter expression ‘?en*’ would filter all records with column values that start with a random character followed by ‘en’ followed by a random sequence of characters like ‘Henry’ or ‘Benedict’.
Would it be possible to do the same with jqxGrid and a bit of additional jQuery magic? Would custom filtering be the means for that?
Any ideas or working solutions?