AD
Administrator
Syncfusion Team
August 11, 2005 02:24 PM UTC
If this is a GridDataBoundGrid, there aremany 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;
}