Dropdown column values to do not populate properly to another datatable

I have a summary page that shows all responses from prior sections. I have here a datable that copies another datable. It works fine with other columns but for the column whose input comes from a dropdown, I'm getting [object Object]. See below

Input

Output

Here's the code I used:
fd.control('StudentDetails').$on('change', function() {
fd.control('Output_StudentDetails').value = fd.control('StudentDetails').value;

Any suggestion on how can I get the actual selection to reflect in the output table?

Hello @Franc_Valencia,

The Course column in the first table allows multiple selection. Make sure that the Multiple property for the Course column in the second table is also enabled:
image

1 Like