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.
Use rowRenderIndex in your cell template, it is the native variable available on each row
E.g
columnDefs: [ { enableFiltering: false, enableSorting: false, field: "sn", displayName: "Sn#", cellTemplate: "{{rowRenderIndex}} s" } ]