Hi Darry,
Greeting from the Syncfusion support.
We checked your query with provided the information and we suspect that you want to update the “Total Cost” column value when change the “Unit Price” value in inline edit mode. Since we found the respective input element and create the instance of the input from that element then update a value on that instance of input component when we change a “Unit Price” value using change event NumericTextBox editing.
Please refer the below code example and sample for more information.
[app.component.ts]
upchangeFn(e) {
var input = document.querySelector("[name='TotalCost']");
var numerictextboxIns = input.parentElement.querySelector('.e-control');
numerictextboxIns.ej2_instances[0].value = e.value * 10;
} |
Please get back to us, if you need further assistance.
Regards,
Balaji Sekar.