AD
Administrator
Syncfusion Team
March 16, 2007 05:14 PM UTC
Hi Brian,
To get the value of the hidden column, you need to call the Record.GetValue method in TablecontrolCellClick event.
GridRecordRow recRow = e.TableControl.Table.DisplayElements[e.Inner.RowIndex] as GridRecordRow;
if(recRow != null)
{
Console.WriteLine(recRow.ParentRecord.GetValue("Col0") );
}
Best regards,
Haneef