Copy value from DataTable to another DataTable

Hi Plumsail,

I have two dataTable controls in my form. One of them allows the user to Enter data and the other will strictly be used to Review the data they entered.

How do I pass the values from one dataTable to another using JavaScript on Change event please?

Thank you!

Hi @DryChips,

Copying data is as simple as

fd.control('DataTable1').value = fd.control('DataTable2').value;

You can read more on the subject in this article. Let me know if this works for you.