Created a drop down in my ultragrid using the following code.
e.Layout.Bands.Item(0).Columns.Item(17).Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownValidate
e.Layout.Bands.Item(0).Columns.Item(17).ValueList = myValueList
My valuelist only has 10 items, and when I click my dropdown, it shows the first 6 or 7. I have to scroll down to get to the other entries.
Is there a way to get it to show all 10 or more?
Hi Brian,
There's a MaxDropDownItems property on the ValueList. It defaults to 8, I think.