Row Information required after selecting row

How can i get the row information On selection of a row using row header.

1 Reply

AD Administrator Syncfusion Team August 11, 2005 02:26 PM UTC

If this is a GridDataBoundGrid, there are many ways to go about this. One way is to use the RowEnter event. private void gridDataBoundGrid1_RowEnter(object sender, GridRowEventArgs e) { int colIndex = this.gridDataBoundGrid1.Binder.NameToColIndex("pkName"); object val = this.gridDataBoundGrid1[e.RowIndex, colIndex].CellValue; }

Loader.
Up arrow icon