智能表未正确排序

时间:2015-07-16 13:19:36

标签: javascript sorting angularjs-ng-repeat smart-table

我的列标题未使用智能表正确排序。它们不是单独排序,而是一起排序。

web/

这是javascript。

<thead>
    <tr>
        <th st-sort="field" ng-repeat="field in stat.q">{{field}}</th>
    </tr>
</thead>

2 个答案:

答案 0 :(得分:3)

对于使用重复,您必须将括号括在{{field}}:

<thead>
  <tr>
    <th st-sort="{{field}}" ng-repeat="field in stat.q">{{field}}</th>
  </tr>
</thead>

答案 1 :(得分:0)

我认为您需要添加<tbody>,然后在<tr>元素上使用ng-repeat。

源代码示例如下:http://lorenzofox3.github.io/smart-table-website/#section-sort