How can access the input filed of inside the listview inside the container

Hi @Pradip_Kumar_Parkar

I don't believe modules currently work in listViews :thinking: For the other example, did you just want to return a comma separated list of each input?

Is this helpful?

let arr = [];
listView1.data.map((x, index) => {
listView2[index].data.map((y) => {
arr.push(y.colorInput1);
});
});

return arr;