I have an Ultragrid Binded to a DS with Relations. The relation are based on an ID that I wish to hid. On the top table I'm able to hide the ID by simply calling:
UG1.Columns(0).Hidden = True
But the relation that has this same ID in it is still being displayed. I'm not quite sure how to hide the relational data ID column. Please see the attached picture for more information:
Have you tried anything like:
UG1.Bands(0).Columns(0).Hidden = TrueUG1.Bands(1).Columns(0).Hidden = True
Changing the Band(0) and Band(1) worked correctly.
Thanks,
-Scott
Potentially also ultraGridColumn.ExcludeFromColumnChooser = ExcludeFromColumnChooser.True;