Hi Danyelle,
Greetings from Syncfusion support.
Based on your requirement you want to get the checked state of the checkbox in the change event of the numeric textbox in the edit dialogbox. Your requirement can be achieved by using the `querySelector` option in the form element. The form element can be get using the `args.event.target.closest('form')` where args is the arguments in the change event of the numeric textbox.
Please refer the below code example.
function changed(args) {
var formElement = args.event.target.closest('form');
var checkBoxObj = formElement.querySelector('.e-checkbox').ej2_instances[0];
console.log(checkBoxObj.checked);
} |
Please find the attached sample and revert for more queries.
Regards,
Joseph I