I have a kendo ui grid in my page that has some columns. Now I want to add a column to it that shows me row number. How to I do this? Thanks.
For Razor you also need to actually show the number also: (not enough point thingies to comment)
above the grid:
@{int counter = 1;}
inside column definitions:
columns.Template(@ @counter @{ counter++; } ).Title("#");