我想要重新排列表格中的行的功能(使用拖放对行进行排序)。 并且行排列的索引也应该在模型中改变。
我怎样才能做类似的事情:http: //jsfiddle.net/tzYbU/1162/ using Angular Directive?
我生成表为:
<table id="sort" class="table table-striped table-bordered">
<thead>
<tr>
<th class="header-color-green"></th>
<th ng-repeat="titles in Rules.Titles">{{titles.title}}</th>
</tr>
</thead>
<tbody ng-repeat="rule in Rules.data">
<tr>
<td class="center"><span>{{rule.ruleSeq}}</span></td>
<td ng-repeat="data in rule.ruleData">{{statusArr[data.value]}}</td>
</tr>
</tbody>
</table>