如何将序列号添加到 Angular ui 网格中的行

How can i add the serial number to rows in Angular ui gird

我将其用于我的 angular 网格

http://ui-grid.info/

我想为所有行添加序列号。

我试过了

{name: 'ID', field: '', displayName: 'Row Number', cellTemplate: '<div>{{row.rowIndex + 1}}</div>'},

但它一直显示在列中的 1 上。 Lool like row.rowIndex 没有返回任何东西。

我该如何解决。谢谢

我非常喜欢破解 ui-grid,发现 'rowRenderIndex' 的插值对我来说已经解决了。

使用

 <span>{{rowRenderIndex+1}}</span>

对于ui-网格中的序列号