Hi-
I have a ultra combo which has a check box in one of the column so that the user can select multiple rows.
In the display layout of the ultra combo, I set the following properties.
.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.True
.Bands(0).Columns("Select").CellActivation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit
Still, I am not able to Select the check box in the combo editor.
I am using ultra combo instead of win grid to save space in my form
Is there any property that I am missing??
Thanks in advance.
The dropdown portion of the UltraCombo is not editable. This is not supported.
You might want to check out this KB article which demonstrates creating a dropdown grid which can be edited:
HOWTO:Creating a Multi-Select Dropdown Combo for the WinGrid
Hi Mike-
Thanks a lot.
I added a dropdownbuttoneditorbutton and set its control property to a wingrid. Also I added this dropdowneditorbutton to the ButtonRightCollection of a text box. Everything is fine; except the grid is not totally visible. I set the properties like Autofit style on the grid. Still I am not able to see all the columns in the grid.
How to set the grid length to be always equal to the textbox? Is there any property that I have to set on the editordropdownbutton ?
It works......Thanks!
The size of the dropdownis based on the Size of the Control you assigned to the button. So you need to set the Size of the grid itself. AutoFitStyle sizes the columns in the grid to the width of the grid.