Angular UI 网格中的 getSelectedRows
getSelectedRows in Angular UI grid
当我select连续被
$scope.gridApi.selection.selectRow(rowIndex)
然后我想 return select 由
编辑的行
$scope.gridApi.selection.getSelectedRows()
我得到了 0(零)行。为什么?我做错了什么?
我不知道什么是 rowIndex
但 selectRow()
接收对象而不是整数。
例如:$scope.gridApi.selection.selectRow($scope.gridOptions.data[0])
中的一些例子
当我select连续被
$scope.gridApi.selection.selectRow(rowIndex)
然后我想 return select 由
编辑的行$scope.gridApi.selection.getSelectedRows()
我得到了 0(零)行。为什么?我做错了什么?
我不知道什么是 rowIndex
但 selectRow()
接收对象而不是整数。
例如:$scope.gridApi.selection.selectRow($scope.gridOptions.data[0])