I have an UltraGrid with 2 bands. Some rows on the parent grid have child grids, but some do not. I do not want the expansion icon (+/-) to appear beside rows which have no child grid, but I want them to remain beside rows which have child grids, of course. Is there a property which will accomplish this, or a programmatic way to prevent this?
Thank you.
Do as follows:
grid.DisplayLayout.Override.ExpansionIndicator = Infragistics.Win.UltraWinGrid.ShowExpansionIndicator.CheckOnDisplay;
Alex.