You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Plugins/sorting/turkish-string.js

41 lines
1.2 KiB
JavaScript

/**
* Sorting in Javascript for Turkish Characters. This plug-in will replace the special
* turkish letters (non english characters) and replace in English.
*
*
* @name Turkish
* @summary Sort Turkish characters
* @author [Yuksel Beyti](http://yukselbeyti.com)
*
* @example
* $('#example').dataTable({
* 'aoColumns' : [
* {'sType' : 'turkish'}
* ]
* });
*/
jQuery.extend( jQuery.fn.dataTableExt.oSort, {
"turkish-pre": function ( a ) {
var special_letters = {
"C": "ca", "c": "ca", "Ç": "cb", "ç": "cb",
"G": "ga", "g": "ga", "Ğ": "gb", "ğ": "gb",
"I": "ia", "ı": "ia", "İ": "ib", "i": "ib",
"O": "oa", "o": "oa", "Ö": "ob", "ö": "ob",
"S": "sa", "s": "sa", "Ş": "sb", "ş": "sb",
"U": "ua", "u": "ua", "Ü": "ub", "ü": "ub"
};
for (var val in special_letters)
a = a.split(val).join(special_letters[val]).toLowerCase();
return a;
},
"turkish-asc": function ( a, b ) {
return ((a < b) ? -1 : ((a > b) ? 1 : 0));
},
"turkish-desc": function ( a, b ) {
return ((a < b) ? 1 : ((a > b) ? -1 : 0));
}
} );