Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! X
As Attached file below, I want to put DummyDataDatatable's data into DummyDataDuplicate. And Datashape is same. there are three types of widget: dropdown, textbox and numeric entry.
Now my process is:
1. I link dropdown list's value into textbox in DummyDataDatatable.
2. I drag textbox's data into DummyDataDuplicateDatatable's column SKU and ID also.
but after that, there is nothing in the DummyDataDuplicateDatatable.
Can Someone help me to figure it out?
Regards,
Tracy
Solved! Go to Solution.
To Read/Write data from/into datatables you need to user services.
So to move the data, you would select data in one table, then write them to the other table, then do a re-read of the target table to show the new resulting content of that datatable.
To Read/Write data from/into datatables you need to user services.
So to move the data, you would select data in one table, then write them to the other table, then do a re-read of the target table to show the new resulting content of that datatable.
Hi PaiChung, how to write them into other them in another datatable? that's the point I want to figure it out.
You use the standard services available with datatables
Get/Query DataTableEntries to retrieve Add or AddOrUpdateDataTableEntry to write
Thank you. I figure it out alr.