UNPKG

alpaca

Version:

Alpaca provides the easiest and fastest way to generate interactive forms for the web and mobile devices. It runs simply as HTML5 or more elaborately using Bootstrap, jQuery Mobile or jQuery UI. Alpaca uses Handlebars to process JSON schema and provide

41 lines (37 loc) 1.2 kB
/** * 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)); } } );