How to get the GridTableControl for a given GridRecord?

Hi,
I have a need to access the GridTableControl for a given GridRecord, but cant see an obvious way of getting it except for the primary GGC.TableControl.

Any ideas?
Thanks
John

1 Reply

HA haneefm Syncfusion Team October 4, 2007 07:38 PM UTC

Hi John,

You can use these codes

string _tdName = record.ParentTableDescriptor.Name;
GridTableControl _tc = this.gridGroupingControl1.GetTableControl(_tdName);

to get the GridTableControl from the record. Please try this and let me know if this helps.

Best regards,
Haneef

Loader.
Up arrow icon