hi, i build successful a hierarchical grid, but when i expand the plus sign
the child will displayed on the right right side . is that correct?i want to display it beyound under the parent
thanks ,that works fine.
Hello,
It seems to me that the ViewStyleBand property of the UltraGrid is set to Horizontal. If you would like to change it, you could do that in the IntializeLayout of the UltraGrid and set it like :
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) {
e.Layout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.Vertical; }