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
280
Resize ultragrid on maximize of sceen.
posted

Hi,

I am having my ultragrid placed inside a pop up window. Now when user maximize the screen the ultragrid height and  width remains same.

--> Uultragrid should also becomes expanded on click of maximize button and

-->How to remove "Drag column header here to group by that column" text.

Thanks & Regards,

Suman George

Parents
No Data
Reply
  • 469350
    Offline posted

    Hi Suman,

    The size of the grid is determined in the same way as any other control. There's nothing special about the grid in that regard. You set the Size, Location, Dock, or Anchor properties to control this. So I'm not sure I understand what you are asking.

    suman george said:
    -->How to remove "Drag column header here to group by that column" text.


            private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
            {
                UltraGridLayout layout = e.Layout;

                layout.GroupByBox.Hidden = true;            
            }

Children
No Data