combobox row count

how to to specify displayed row count in combobox of DataBoundGrid?

1 Reply

AD Administrator Syncfusion Team January 27, 2004 12:34 PM UTC

You can use code like in say FormLoad: GridComboBoxCellRenderer cr = gridDataBoundGrid1.CellRenderers["ComboBox"] as GridComboBoxCellRenderer; ((GridComboBoxListBoxPart)cr.ListBoxPart).DropDownRows = 5;

Loader.
Up arrow icon