下面的静态示例对名字进行了排序,但对电子邮件列禁用了排序:
<tr>
<th st-sort="firstName">first name</th>
<th>email</th>
</tr>
但是,我的专栏是动态的。所以我在ng-repeat
. 列是否可排序由isSortable
标志决定。
<tr>
<th st-sort="column.isSortable" ng-repeat="column in columns">{{column.columnName}}</th>
</tr>
如何仅使isSortable
设置为true
可排序的列?