I have a hierarchical wingrid to display data for two tables having parent-child relationship. Default behavior of wingrid is that when we clich on "+" sign it expands the child table rows associated to that row at. Expanded rows are displayed having a short distance from the parent row starting position. I just want to display these rows exact below the parent row. what is the best way to do this.
I think what you mean is that you want to set the Indentation property of the child band to 0. You can set the property for each band:
ultraGrid1.DisplayLayout.Bands[0].Indentation = 0;
ultraGrid1.DisplayLayout.Bands[1].Indentation = 0;
Thanks for the help. I foud this property during R&D :P