How can I get access to the value of the input fields which are placed in
listview->container->listview->inputfields
Or
listview >container->module->listview->inputfields
the structure is like
listview1
--container
--inputfield
--listview2
--container
--inputfield
-- listview2
.
.
so on
Tess
2
Hi @Pradip_Kumar_Parkar
I don't believe modules currently work in listViews
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;

Tess
3
If you're looking to return the values dynamically, you can follow our docs suggestion for returning items in nested listViews:
listView2[ri[0]].data[i].colorInput1
