如何在角度ui-grid的cellTemplate中获取行索引

时间:2018-04-05 05:30:28

标签: angularjs angular-ui-grid ui-grid

ng-click="grid.appScope.selectItem($event,row.entity.$index);"我想通过此函数传递行索引。即使我尝试使用$ index,$ parent。$ index。我无法获得索引。

1 个答案:

答案 0 :(得分:1)

尝试rowRenderIndex$parent.$index

ng-click="grid.appScope.selectItem($event, rowRenderIndex);"

ng-click="grid.appScope.selectItem($event, $parent.$index);"