Thursday, October 1, 2009

Auto Index in GridView

void gv_InitNewRow(object sender, InitNewRowEventArgs e) { GridView gvv = (GridView)sender; int a = 1; for (int i = 1; i <= gvv.RowCount; i++) { gvv.SetRowCellValue(e.RowHandle, "Index", a); a++; } }

No comments:

Post a Comment

Mat Table Angular

Mat Table in Angular Mat table is used to display data . its a material designed styled data-table . For using Material Table MatTableMo...