BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void button1_Click(object sender, System.EventArgs e) { this.gridDataBoundGrid1[2,3].CellValue = 123.123; Console.WriteLine(this.gridDataBoundGrid1[2,3].CellValue); Console.WriteLine(this.gridDataBoundGrid1[1,3].CellValue); }Are you using an hierarchical GridDataBoundGrid? If so, there are extra header rows for each levels that you would have to take into account. Can you upload a little sample showing the problem you are having, or tell us how to see the problem in one of our samples?
this.gridDataBoundGrid1.Binder.DirectSaveCellInfo = true;
this.gridDataBoundGrid1[2,3].CellValue = 123.123;
this.gridDataBoundGrid1.Binder.DirectSaveCellInfo = false;
private void gridDataBoundGrid1_CurrentCellMoved(object sender, GridCurrentCellMovedEventArgs e) { GridCurrentCell cc = this.gridDataBoundGrid1.CurrentCell; if(cc.MoveFromColIndex == 2) { this.gridDataBoundGrid1.Binder.DirectSaveCellInfo = true; this.gridDataBoundGrid1[cc.MoveFromRowIndex,3].CellValue = 123.123; this.gridDataBoundGrid1.Binder.DirectSaveCellInfo = false; } }
this.gridDataBoundGrid1.CurrentCell.ConfirmChanges();
to save the changes on the CurrentCell before you set DirectSaveCellInfo to true to change the other value.