RS
Rajarajeswari S
Syncfusion Team
July 7, 2008 07:17 AM UTC
Hi Gilberto,
Thanks for using Syncfusion products.
If your intension is to retrieve data from accessing the records without using the DataSource, please refer the below code snippet which illustrates this:
Record rec = this.GridGroupingControl1.Table.CurrentRecord;
string name = rec.GetValue("Name").ToString();
In the above snippet, we are accessing the value for the "Name" column.
Please let me know if you have any other concerns.
Regards,
Raji