Hello,
I'm using the GridDataControl in a WPF project. In the CurrentCellEditingComplete I want to retrieve the value entered and the MappingName of the corresponding column. Below you can see the code lines I tried. Unfortunately none of them worked. Can someone give me the correct code lines?
Thanks in advance!
-------
private void DeelprojectenWerknemerGridDataControl_CurrentCellEditingComplete(object sender, Syncfusion.Windows.ComponentModel.SyncfusionRoutedEventArgs args)
object currentCellValue;
GridDataControl gridDataControl;
gridDataControl = sender as GridDataControl;
Detailplanningregel detailplanningregel = gridDataControl.SelectedItem as Detailplanningregel;
GridCellData gridCellData = gridDataControl.Model.Data;
int columnIndex = gridDataControl.Model.CurrentCellState.ColumnIndex;
int rowIndex = gridDataControl.Model.CurrentCellState.RowIndex;
GridStyleInfoStore gsis = gridDataControl.Model.Data[rowIndex, columnIndex];
currentCellValue = gridDataControl.Model.Data[rowIndex, columnIndex];