首先,我使用TableSorter 2.11.1和jquery 1.9.1。tablesorter自定義顯示組標題
我用這個演示,組我行(http://mottie.github.io/tablesorter/docs/example-widget-grouping.html) 我的日期我的表進行排序,我是按周這樣的形象
我想要的分組是加總的分組欄中的一週價格。比如一週中的行數。
我在窗口小部件grouping.js搜索和我發現代碼計算行數在本週
$tr = c.$table.find('tr.group-header').bind('selectstart', false);
if (wo.group_count) {
$tr.each(function(){
$(this).find('.group-count').html(wo.group_count.replace(/\{num\}/g, $(this).nextUntil('tr.group-header').filter(':visible').length));
});
}
我不是在jQuery的一個專家,所以我不能找到一種方法,獲得價格並將其添加到組標題。
你可以創建jsfiddle –
好吧,我會嘗試。 – ubertinador
http://jsfiddle.net/pZcY7/這裏的jsfiddle,但我複製我的代碼,但我沒有像我的電腦上工作:/ 這是我第一次使用這個工具。 – ubertinador