BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi Luca,
Thank you for using Syncfusion Products.
We have analyzed your query. You can get the value of the cell while it is in edit mode by using ControlValue of CurrentCell Renderer like in the following code snippet
Code Snippet:
void button1_Click(object sender, RoutedEventArgs e) { if (gridControl.CurrentCell.IsEditing) { var value = gridControl.CurrentCell.Renderer.ControlValue; } else { var row = gridControl.CurrentCell.RowIndex; var col = gridControl.CurrentCell.ColumnIndex; var value = gridControl.Model[row, col].CellValue; }
} |
Please let us know if you need any further assistance.
Thanks
Hi Luca,
Apologize for the delay.
You can get CurrentCell in GridDataControl from the CurrencyManager of Model like the below code snippet.
var cell = griddatacontrol.Model.CurrencyManager.CurrentCell |
Please let us know if you need any further assistance.
Thanks
Kanimozhi B