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
4695
How to make it invisible in run time???
posted

Dear all,

When I drag the ultragrid on the windows form, there is a header about "drag columns........" as shown below screen. How to make it invisible in design and run time???

  • 469350
    Offline posted

    The easiest way to do this is to use the Feature Picker in the grid designer.

  • 20872
    Offline posted

    Hello,

    It seems to me that your ultraGrid is set to be OutlookGroupBy and that's why you are seeing the mentioned box.

    What you could do is set in design time the following:

    ultraGrid1->DisplayLayout -> ViewStyleBand  -> Vertical

    the same applies and for run time.

    If you would like to keep the OutlookGroupBy style you could set the following in the InitializeLayout event your UltraGrid :

    private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
            { 

              e.Layout.GroupByBox.Hidden = true;
            }

    Please let me know if you need any other assistance.