Filter using:
We shall apply the filter to the following data types: integer, string, char.
The filter for the string types (string, char)
You should use only symbols of letters,
digits and two special symbols'*' and '?'.
Description:
'*' - means any quantity of any symbols;
'?' - means a symbol.
Examples:
Filter: a*
Result: [All records are starting with "a" symbol]
Filter: a??
Result: [All records starting with "a" symbol and having length in 3 symbols]
The filter for the numerical types (integer)
You should use only symbols of digits and equality symbols: '=', '<' and '>'
Description:
'=' - equal;
'<' - less;
'>' - greater;
'>=' - greater or equal;
'<=' - less or equal.
Examples:
Filter: >100
Result: [All records which have the value of the selected filed more than 100]
Filter: <=5
Result: [All records less or equal 5]
©2007 JustAjax.com
JustAjaxTable : MS Office 2007 Style