We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

GridControl - setting the DropDownWidth of a combobox

Hello, When I set the CellType of a cell in the GridControl to "ComboBox" how do I specify the DropDownWidth property? It appears the width is the same as the cell itself, but I''d like to increase it. Thanks!

1 Reply

AD Administrator Syncfusion Team December 3, 2004 02:46 PM UTC

The same combobox is used for any cell that has celltype "ComboBox". So, in order to set its width, you need to do it dynamically as each combobox is dropped (to allow different cells to have different widths). You can do this in the CurrentCellShowingDropDown event.
Private Sub grid_CurrentCellShowingDropDown(ByVal sender As Object, ByVal e As GridCurrentCellShowingDropDownEventArgs) Handles grid.CurrentCellShowingDropDown
	Dim cc As GridCurrentCell = Me.grdEstimate.CurrentCell
	//size the dropdown based on cc.RowIndex and cc.ColIndex...
	e.Size = New Size(200, e.Size.Height)
End Sub

Loader.
Live Chat Icon For mobile
Up arrow icon