This example demonstrates how to numerate rows in the grid. For that purpose, a new unbound column will be added. The the CustomColumnDisplayText event will be handled to assign numbers to the cells in this column.
Question Comments
Added By: deepakvasudevan at: 8/21/2012 7:21:54 AM
A small correction. In the code behind example the assignment should read as
e.DisplayText = (e.VisibleRowIndex +1 ).ToString();
to make it more realistic. Zero Indexing is too technical to address common man.