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
290
dropdown width in ultrawingrid
posted

HI,
I am using version 9.2

In simple words:
I have a UltraDropDown in one of the column of ultra win grid....
I have set DropDownWidth=300, but it did not apply properly....

see the image below:

help needed !!

Parents
  • 469350
    Verified Answer
    Offline posted

    Hi,

    The DropDownWidth property setting seems to have worked just fine here. The DropDown is 300 picels wide.

    I suspect what you want to do is make the dropdown column 300 pixels width, though, not the dropdown windows itself.

    So you can do that the same way you would do it in the grid. I recommend using the InitializeLayout event of the UltraDropDown control and then you can set:

    e.Layout.Bands[0].Columns["Vaule"].Width = 300;

    The DropDownWidth will size to the column width(s) by default, so you do not need to set DropDownWidth.

Reply Children
No Data