Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
5549
Hierarchical grid, layout
posted

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

  • 20872
    Verified Answer
    Offline posted

    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;
            }