diff --git a/features/fuzzySearch/index.html b/features/fuzzySearch/index.html index b2672c8..f2218bd 100644 --- a/features/fuzzySearch/index.html +++ b/features/fuzzySearch/index.html @@ -70,13 +70,13 @@ $(document).ready(function() {
Fuzzy searching is used in search engines and databases to perform searches that will match results that are not necessarily exactly the same as the search term. This allows spelling mistakes and typos to be accounted for. It also allows small changes in dialect not to affect search results. A commonly used example is for surname searching. "Smith" and "Smythe" are pronounced the same way, but using conventional searching typing "Smith" would not return "Smythe".
-This plug-in adds fuzzy search functionality to datatables. It does this through a combination of exact matching and the damerau-levenshtein algorithm. There are four initialisation options that are associated with this +
This plug-in adds fuzzy search functionality to DataTables. It does this through a combination of exact matching and the Damerau-Levenshtein algorithm. There are four initialisation options that are associated with this plugin.
fuzzySearch.toggleSmart
allows the searching to be changed from exact matching to fuzzy searching.fuzzySearch.rankColumn
allows the % match to be set in a column within the datatable. Some examples of use cases could be to display the value
- to the user. or to hide the column and order based on it - as a search engine would.fuzzySearch.threshold
allows the value of similarity that is required from the damerau-levenshtein function to display the row to be
changed.fuzzySearch.returnSearch
allows the option for searching to only occur when the enter key is pressed.