Angular-tablesort中断

时间:2014-06-13 21:48:22

标签: angularjs angularjs-directive

angular-tablesort节省了我很多时间,但我遇到了一个错误,即使我按照示例并添加类,我也无法使标题变为可排序。我的代码如下所示:

<table class="table" ts-wrapper>
  <thead>
    <tr>
      <th class="tablesort-sortable" ts-criteria="Name|lowercase" ts-default>Name</th>
    </tr>
  </thead>
  <tbody>
    <tr ng-repeat="item in items" ts-repeat>
      <td>{{item.data.title}}</td>
    </tr>
  </tbody>
</table>

1 个答案:

答案 0 :(得分:3)

解决!

当我正在研究如何最好地向你们呈现这些时,我意识到这是一个RTFM问题。我感到困惑的是,该示例将ts-criteria与div内容匹配,并且未完全匹配ng-repeat内容。 angular-table实际上允许您传入item.data.titledata.title以获取可排序的表格。

有点尴尬,但我仍然会发布这个以防其他人遇到同样的问题。这与自举角度应用程序无关,这是我的第一次预感。将标题更改为更通用(从 Angular-tablesort中断时,当角度被引导 Angular-tablesort中断)。