I know that UltraGrid shows or hides a UltraGridBand completely for now, it is still very useful if a ChildBand could be shown or hidden for different parent rows individually.
is a CreationFillter capable for this ? or do I have to submit a feature request?
Hi,
A CreationFilter would not help. You could remove the child band from the display, but there would still be a space where it would have been. There's no reasonable way to remove the space.
So this would be a feature request.
Although... if you hide all of the child rows, I think the band would essentially be hidden under than parent row. This isn't very efficient, but it might work.
Thank you, for now I could do this:
foreach(UltraGrid row in this.ultraGrid1.Rows[0].ChildBands[0].Rows)
row.Hidden=true;
only that the AddNewRow together with the column headers is still there if AllowAddNew is turned on.
I submit a feature request, if which fulfilled I would do something like this:
this.ultraGrid1.Rows[0].ChildBands[0].Hidden = true;