BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
this.gridDataBoundGrid1.CurrentCell.EndEdit();
this.gridDataBoundGrid1.Binder.EndEdit();
private void gridDataBoundGrid1_CurrentCellChanged(object sender, System.EventArgs e) { //checkboxcell if(this.gridDataBoundGrid1.CurrentCell.ColIndex == 1) { this.timer1.Interval = 30; this.timer1.Enabled = true; } } private void timer1_Tick(object sender, System.EventArgs e) { this.timer1.Enabled = false; this.gridDataBoundGrid1.Binder.EndEdit(); }