Tablesorter:对捷克语字母表进行排序

时间:2015-03-15 17:28:24

标签: javascript jquery tablesorter non-english

我正在使用tablesorter characterEquivalents扩展,如http://mottie.github.io/tablesorter/docs/example-locale-sort.html中所述。

我为捷克字符准备了类似的扩展,但排序对某些字符不起作用 - f。即的 \ u017d

$.extend( $.tablesorter.characterEquivalents, {
"a" : "\u00e1", // á
"A" : "\u00c1", // Á
"c" : "\u010d", // č
"C" : "\u010c", // Č
"d" : "\u010f", // ď
"D" : "\u010e", // Ď
"e" : "\u00e9\u011b", // éě
"E" : "\u00c9\u011a", // ÉĚ
"i" : "\u00ed", // í
"I" : "\u00cd", // Í
"n" : "\u0148", // ň
"N" : "\u0147", // Ň
"o" : "\u00f3", // ó
"O" : "\u00d3", // Ó    
"r" : "\u0159", // ř
"R" : "\u0158", // Ř
"s" : "\u0161", // š
"Š" : "\u0160", // Š
"t" : "\u0165", // ť
"T" : "\u0164", // Ť        
"u" : "\u00fa\u016f", // úů
"U" : "\u00da\u016e", // ÚŮ
"y" : "\u00fd", // ý
"Y" : "\u00dd", // Ý    
"z" : "\u017e", // ž
"Z" : "\u017d" // Ž
}); 

在此示例中http://jsfiddle.net/Gk43v/18/存在Ž Z 之前出错的问题。

但在我的网页上,Ž位于表格中间,这是完全错误的。

1 个答案:

答案 0 :(得分:1)

它正在发挥作用。 “z”已在内部缓存中替换。

虽然您可能需要包含true标志来执行深度扩展:

$.extend( true, $.tablesorter.characterEquivalents, { ... });

查看此演示(排序以查看firebug窗口中的列值):http://jsfiddle.net/Gk43v/19/


更新:好的,问题似乎是实际的排序顺序。问题是默认排序是使用字符的ASCII值完成的,因此Š和Ž在A-Z之后排序,没有任何字符等效替换。该函数将“Š”替换为“S”,将“Ž”替换为“Z”,使它们与它们的非重音字母等效且无法区分。

如果您真的希望排序维护字符顺序,则需要使用其他文本排序器,例如sugarjs,它允许您设置排序顺序:

Array.AlphanumericSortOrder = 'AaÁáBbCcDdÐðEeÉéĘęFfGgHhIiÍíJjKkLlMmNnOoÓóPpQqRrSsTtUuÚúVvWwXxYyÝýZzÞþÆæÖö';

然后,您可以使用textSorter option为该列使用糖数组排序 - here is a demo showing an Icelandic sort

$("table").tablesorter({
  theme : 'blue',
  ignoreCase : false,
  textSorter : {
    // alphanumeric sort from sugar (http://sugarjs.com/arrays#sorting)
    // for the first column (zero-based index)
    0 : Array.AlphanumericSort
  }
});

更新#2:因为捷克语字母表有点复杂,所以你需要用placholder替换“CH”,因为Sugar只允许排序顺序定义中的单个字符。

所以在这个例子中,我用“Æ”(updated demo

替换了“CH”
$(function () {
    Array.AlphanumericSortOrder = 'AaÁáÄäBbCcČčDdĎďEeÉéĚěFfGgHhÆæIiÍíJjKkLlMmNnŇňOoÓóÖöPpQqRrŘřSsŠšTtŤťUuÚúŮůÜüVvWwXxYyÝýZzŽž';
    Array.AlphanumericSortIgnoreCase = true;
    // see https://github.com/andrewplummer/Sugar/issues/382#issuecomment-41526957
    Array.AlphanumericSortEquivalents = {};

    // replace "Ch" and "ch" with a placeholder... it can be anything
    // in this example, I'm replacing ch with "æ" and Ch or CH with "Æ"
    // these characters have been added to the Array.AlphanumericSortOrder
    // between "h" and "I" - according to http://en.wikipedia.org/wiki/Czech_orthography
    var replaceCH = function( node ) {
        return $(node).text()
            .replace(/(Ch|CH)/g, '\u00c6')
            .replace(/ch/g, '\u00e6');
    };

    $("table").tablesorter({
        theme: 'blue',
        // table = table object; get config options from table.config
        // column is the column index (zero-based)
        ignoreCase: false,
        textExtraction : {
            1: replaceCH,
            3: replaceCH
        },
        textSorter: {
            1 : Array.AlphanumericSort, // alphanumeric sort from sugar (http://sugarjs.com/arrays#sorting)
            3 : Array.AlphanumericSort
        }
    });
});

我确实尝试使用characterEquivalents函数替换字符串,但它目前只支持单字符替换(我将在以后的版本中修复此问题),所以现在我使用自定义{ {1}}功能。

您报告的第二个问题可以通过在ajax调用完成并在表格呈现后在表上触发"update" method来解决。

textExtraction