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
Grid Layout
posted

Dear all,

(1) How to make the ultragrid column header resizeable??

(2) How to make the ultragrid Auto Fill??

(3) How to make the part in the below picture to be invisible??

Parents
No Data
Reply
  • 20872
    Offline posted

    Hello,

    What you could do is setting the following in the InitializeLayout event of the UltraGrid :

    1. e.Layout.Override.AllowColSizing = AllowColSizing.Free;

    2. e.Layout.AutoFitStyle = AutoFitStyle.ResizeAllColumns;

         or 

        e.Layout.AutoFitStyle = AutoFitStyle.ExtendLastColumn;

    3. e.Layout.GroupByBox.Hidden = true;

    Please let me know if that is what you are looking for.

Children
No Data