I\'m working with angular ui-grid version 3.0 and can not find the way to get the index of the row, to add a numeration column to the grid. I would like to help me.
by using this way to solve this problem...
$http.get('./api/ioni_users') .success(function(data) { $scope.gridOptions.data = data; angular.forEach(data, function(data, index) { data["index"] = index+1; //data.push({"index":index+1}) }) });