Change ComboBox menu size?

For the default ComboBox cell type for the Grid Grouping Control for Windows, is there a way to change the number of list items displayed? I have a case of a large list, and the small menu size (six items) makes it difficult to navigate. Thanks.

1 Reply

LS Lingaraj S Syncfusion Team November 30, 2009 09:58 AM UTC

Hi Jonathan,

Thank you for your interest in Syncfusion products.

Please try using DropDownRows property in GridComboBoxListBoxPart to achieve your requirement as shown below:

GridComboBoxCellRenderer cr =this.gridGroupingControl1.TableControl.CellRenderers["ComboBox"] as GridComboBoxCellRenderer;
((GridComboBoxListBoxPart)cr.ListBoxPart).DropDownRows = 10;


Please let me know if you have any queries.

Regards,
Lingaraj S.

Loader.
Up arrow icon