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
close icon

ComboBox CellType and buttons when editing

I've got a combo box cell type with the ShowButtons style set to CurrentCellEditing. I've changed my ActivateCurrentCellBehaviour to DblClickOnCell and I can't get the combo box to enter edit mode by double clicking (works fine if I press F2 or start typing). Is there anything that I can do to fix this problem? Thanks, Sue

1 Reply

AD Administrator Syncfusion Team September 12, 2003 08:29 AM UTC

Try this event to see if it will handle this problem.
private void gridControl1_CellDoubleClick(object sender, GridCellClickEventArgs e)
{
	if(this.gridControl1.ActivateCurrentCellBehavior == GridCellActivateAction.DblClickOnCell)
	{
		this.gridControl1.CurrentCell.BeginEdit();
	}
}

Loader.
Live Chat Icon For mobile
Up arrow icon