NR
Nirmal Raja
Syncfusion Team
November 12, 2008 09:32 PM UTC
Hi Harry,
Thank you for your interest in Syncfusion products.
Please try this code to solve this issue and let me know if this helps.
void gridGroupingControl1_TableControlCurrentCellMoved(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableControlCurrentCellMovedEventArgs e)
{
flag = 0;
}
void gridGroupingControl1_TableControlCurrentCellStartEditing(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableControlCancelEventArgs e)
{
if (flag==0)
{
e.Inner.Cancel = true;
}
}
int flag=0;
void gridGroupingControl1_TableControlCellDoubleClick(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableControlCellClickEventArgs e)
{
flag = 1;
}
Regards,
Nirmal