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
200
Column chooser dialog size
posted

How to resize a ColumnChooser dialog to fit columns list?

  • 12773
    Suggested Answer
    posted

    Hello,

    There is no build functionality to set auto sizing based on the columns count in ColumnChooserControl. So you can try to set the size of the control  based on the columns count and multiply with the rows default height. See the code snipped bellow.:

    void ultraGrid1_BeforeColumnChooserDisplayed(object sender, BeforeColumnChooserDisplayedEventArgs e)
            {
               …
               int newHeight = this.ultraGrid1.DisplayLayout.Bands[0].Columns.Count * 20;
               e.Dialog.Size = new Size(200, newHeight);
           …
            }

    Let me know if that helps.

    Sincerely,
    Dimi
    Developer Support Engineer
    Infragistics, Inc.