Hi
I want to get neighbouring cell value from Datagrid edit form mode databox value change event
I use to following cade but argument only return relevant field dara only can't get rowdata or neighbouring cell value
JavaScriptonFieldDataChanged(e: any) {
if (e.parentType == 'dataRow' && e.dataField == 'LastRenewalDate') {
e.editorOptions.onValueChanged = function (args) {
const xe = args;
//here I want to get neighboring cell value and change it it should reflect on the cell as well
}
}
}
I use Angular 5