BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void gridGroupingControl1_CurrentRecordContextChange(object sender, CurrentRecordContextChangeEventArgs e) { if(e.Action == CurrentRecordAction.LeaveRecordComplete) { Console.WriteLine(e.Action); } }Here is a sample. I might be missing something, but for me, the only time something appears in the output window is when you leave the record. Do you see something different? http://www.syncfusion.com/Support/user/uploads/GGC_ExpressionField_e5c0ccaa.zip
> >private void gridGroupingControl1_CurrentRecordContextChange(object sender, CurrentRecordContextChangeEventArgs e) >{ > if(e.Action == CurrentRecordAction.LeaveRecordComplete) > { > Console.WriteLine(e.Action); > } >} >> >Here is a sample. I might be missing something, but for me, the only time something appears in the output window is when you leave the record. Do you see something different? > > >http://www.syncfusion.com/Support/user/uploads/GGC_ExpressionField_e5c0ccaa.zip > >
private void grid_TableControlCurrentCellMoving(object sender, GridTableControlCurrentCellMovingEventArgs e) { GridCurrentCell cc = e.TableControl.CurrentCell; if(cc.MoveFromRowIndex != cc.MoveToRowIndex) { //raise your event... } }
>private void grid_TableControlCurrentCellMoving(object sender, GridTableControlCurrentCellMovingEventArgs e) >{ > GridCurrentCell cc = e.TableControl.CurrentCell; > if(cc.MoveFromRowIndex != cc.MoveToRowIndex) > { > //raise your event... > } >} >