diff --git a/docs/example-widget-filter-any-match.html b/docs/example-widget-filter-any-match.html index 16396572..de3be495 100644 --- a/docs/example-widget-filter-any-match.html +++ b/docs/example-widget-filter-any-match.html @@ -74,7 +74,7 @@
> >= <= <
) is not allowed because tables that contain both numbers and text (in separate columns). For example:
+ > >= <= <
) is not allowed because tables that contain both numbers and text (in separate columns). For example:
"Fred" > "1" // true* "Fred" < "10" // false "Fred" > 1 // false (numeric comparisons occur with parsed table data) @@ -90,14 +90,15 @@
~
), exact match ("
), wild card matches( ?
or *
), regex (/\d/g
), and logical and (a && b
)/or (a|b
) matches.// apply "2?%" filter to the fifth column (zero-based index) var columns = []; columns[5] = '2?%'; // anyMatch will kick in on undefined column filters, // unless the array looks like this: columns = [ '', '', '', '', '', '2?%' ] -$('table').trigger('search', [ columns ]);
Type (1)(2) | Description | Examples |
---|---|---|
Type (1)(2) | Description | Examples |
text | Any text entered in the filter will match text found within the column | abc (finds "abc", "abcd", "abcde", etc); (finds "Aaron" and "Philip Aaron Wong") |
~ | Perform a fuzzy search (matches sequential characters) by adding a tilde to the beginning of the query (v2.13.3) | (matches "Bruce Lee" and "Brenda Dexter") or (matches "Philip Aaron Wong") |