Can I access an expression field in the ggc at the record level

I have an ExpressionFieldDescriptor defined in my ggc. Can I access this field at the record level?

1 Reply

AD Administrator Syncfusion Team February 9, 2007 03:48 PM UTC

Hi James,

Can I access this field at the record level?
>>>>>
Yes, you can access this field using the Record.GetValue() method. Please find the code snippet below.

//getting the current record expression value.
object objExpressionValue = this.gridGroupingControl1.Table.CurrentRecord.GetValue("ExpressionColumnName");

Best regards,
Haneef

Loader.
Up arrow icon