AD
Administrator
Syncfusion Team
February 14, 2006 09:12 AM UTC
Hi Jim,
To activate the CurrentCell on Double click, you need to set the property ForceEditwhenActivated to false and set the property ActiveCurrentCellBehavior is to GridCellActivateAction.DblClickOnCell. Here is a code snippet.
this.gridControl1.ActivateCurrentCellBehavior = GridCellActivateAction.DblClickOnCell
GridFormulaCellRenderer.ForceEditWhenActivated = false;
Let us know if you need further assistance,
Regards,
Haneef
JI
jim
February 14, 2006 03:43 PM UTC
That did the trick.
Thanks!