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
85
Combobox in WinGrid
posted

Hello,

How can I put a combobox into Wingrid cell?

Thanks 

 

Parents
  • 384
    posted

    I was able to accomplish this by adding a ultracombo box to my form and then setting the grid cell Style to DropDown and the Valuelist to the ultracombo.  I have a dynamically built grid so I do this in the grid's InitializeRow event, but I would suspect it could also be set at design time.

    row.Cells[intCell].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownValidate;
    row.Cells[intCell].ValueList =
    this.ucMyUltraCombo;

Reply Children