I have a gridGroupControl attached to a datasource what has an inner table (going through the relation).
I dissabled the themes (themesEnabled = false), and I see that reflected for the main table, but not for the child table.
How can I change the look-and-feel for the childTable?
I tried:
Syncfusion.Windows.Forms.Grid.Grouping.GridTableOptionsStyleInfo gto = new
Syncfusion.Windows.Forms.Grid.Grouping.GridTableOptionsStyleInfo();
gto.ShowRowHeader = false;
gridRelationDescriptor1.ChildTableDescriptor.set_TableOptions(gto);
But this does not seem to be valid.