0

我在一个适合的表格中有数据。第一行 (tr) 具有下面每一行的平均值。例子:

| Name    | Number |
--------------------
| Average | 4.5    |
| Jim     | 5.0    |
| Sam     | 4.0    |

不应该对平均行进行排序,是否有一个类或属性可以防止对平均值进行排序?

4

1 回答 1

2

因为默认的排序插件不支持每行设置,所以您需要使用自定义排序器和自定义标记来破解您的逻辑。

$('table').footable({
   sorters : {
      alpha : function mysorter ( a, b ) {
         if ( ! mysorter.top ) {
            mysorter.top = $('table .footable-sorted-desc').length ? 1 : -1;
            setTimeout( function(){ mysorter.top = 0; }, 0 );
         }
         if ( a.indexOf( '\u2063' ) >= 0 ) return mysorter.top;
         if ( b.indexOf( '\u2063' ) >= 0 ) return -mysorter.top;
         return a > b ? 1 : ( a < b ? -1 : 0 );
      }
   }
});
<link href="http://fooplugins.com/footable/css/footable.core.min.css" rel="stylesheet"/>
<link href="http://fooplugins.com/footable/css/footable.metro.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://fooplugins.com/footable/js/footable.js"></script>
<script src="http://fooplugins.com/footable/js/footable.sort.js"></script>

<table><thead><tr><th>Name<th data-sort-initial="true">Number</thead><tbody>
<tr><td>Average<td>4.5&#x2063;</tr>
<tr><td>Jim<td>5.0</tr>
<tr><td>Sam<td>4.0</table>

在这里,我使用隐形分隔符 \u2063来标记“顶部”内容。

一些额外的行用于优化检测排序方向并相应地调整结果(升序时最小,降序时最大)。

于 2015-02-11T11:53:17.067 回答