使用AJAX数据,所以我这样声明:
<table st-table="displayedCollection" st-safe-src="eventStationsAnalyticData"
class="table table-striped">
<thead>
<tr>
<th st-sort="getters.station_id">Station #</th>
<th st-sort="station_name">Station name</th>
</tr>
<tr>
<th colspan="5"><input st-search="" class="form-control" placeholder="Global search ..." type="text"/></th>
</tr>
</thead>
<tbody>
<tr ng-repeat="row in displayedCollection">
<td>{{row.station_id}}</td>
<td>{{row.station_name}}</td>
</tr>
</tbody>
没有可见的排序箭头(包括CSS ),并且没有点击排序函数上的断点。
我相信我已经从示例&amp;编辑,但......
谁可以提供帮助?
[更新]搜索也无效。而且,即使我删除了搜索,排序仍然无效。
自我注意,它似乎适用于你在办公室分叉的this Plunk。当你回到家时,试着找出你实际代码的差异。
这可能是这里看不到的东西,比如遗失的文件;但是,不要管理任何事情。