CH
Chinedu
June 15, 2007 05:44 PM UTC
thanks again Haneef.
really appreciate your help.
HA
haneefm
Syncfusion Team
June 15, 2007 06:02 PM UTC
Hi Nedu,
To get the id column value of a record, you can use the GetValue method of that record. Below is a code snippet.
[c#]
object objId = e.TableControl.Table.CurrentRecord.GetValue("IDColumnName");
string id = Convert.ToString(objId);
Best Regards,
Haneef