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.
Up arrow icon