diff --git a/features/fuzzySearch/rankColumn.html b/features/fuzzySearch/rankColumn.html index ce20069..11ce059 100644 --- a/features/fuzzySearch/rankColumn.html +++ b/features/fuzzySearch/rankColumn.html @@ -72,7 +72,7 @@ $(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 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 three initialisation options that are associated with this plugin.

This example demonstrates the use of the fuzzySearch.rankColumn initialisation option. The default value for this option is undefined which will lead to the similarity not being displayed in any column. In this example fuzzySearch.rankColumn is set to 6 which is the column on the far right of - the table. When usingfuzzy searching this column will be updated with the similarity value found within the rows data. When normal searching is being used this + the table. When using fuzzy searching this column will be updated with the similarity value found within the rows data. When normal searching is being used this column is not updated to include a value. The type that must be used for fuzzySearch.rankColumn is number. The full range of Datatables column selectors cannot be used here as the value is used to index internal arrays rather than using the Datatables API

@@ -639,4 +639,4 @@ $(document).ready(function() { - \ No newline at end of file + diff --git a/features/fuzzySearch/returnSearch.html b/features/fuzzySearch/returnSearch.html index 4b79a7e..eac9646 100644 --- a/features/fuzzySearch/returnSearch.html +++ b/features/fuzzySearch/returnSearch.html @@ -73,7 +73,7 @@ $(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 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 three initialisation options that are associated with this plugin.