Hello,
I'm very new in Syncfusion products.
My first test is a GridGroupingControl loaded from a sql table.
My purpose, when I doubleclick on a row, is to load a form populated by the datas of this row.
I've found this example :
record r = gridGroupingControl1.Table.CurrentRecord;
int col = this.gridGroupingControl1.TableControl.CurrentCell.ColIndex;
int field = this.gridGroupingControl1.TableDescriptor.ColIndexToField(col);
object o = r.GetValue(this.gridGroupingControl1.TableDescriptor.Fields[field]);
Console.WriteLine(o);
But I have an error (in french) that an assembly is missing ... but I don't find which one to declare.
Thanks for your help
Regards
Christian