在上面提到的小提琴http://jsfiddle.net/P2DsY/标题中是Make Model。 这两个有子数据。而不是排序所有的子和父,我需要排序我想要排序的唯一的父标题然后排序 1)ouptut:
**Make Model**
Honda Accord
Honda 2-Door Honda Red
Honda 4-Door Honda Blue
Toyota Camry
Toyota 2-Door Toyota Yellow
Toyota 4-Door Toyota Green
如果再次排序,需要显示如下输出 2)输出:
**Make Model**
Toyota Camry
Toyota 2-Door Toyota Yellow
Toyota 4-Door Toyota Green
Honda Accord
Honda 2-Door Honda Red
Honda 4-Door Honda Blue
请告诉我如何对表进行排序,而不是根据父内容对所有需要排序的表进行排序。
答案 0 :(得分:2)
演示中的问题是“expand-child”不是子行的默认类名。
我updated the demo使用以下脚本:
$(document).ready(function()
{
$("table").tablesorter({
theme: 'blue',
cssChildRow: 'expand-child',
// the following isn't necessary, but I left it there...
selectorHeaders: '> thead > tr > th'
});
});