How do I reference the values in List View Controls

Goal: I'm trying to send multiple emails in a single screen in a List View.

Steps: The list view is rendering with the email composer and the send button. I can edit the values, but when I click send (triggers script) I can't seem to get the value of the rich text. When I
log the whole list view I don't see the text from the rich text. console.log (JSON.stringify(emailsListView));

image

Hello! On your List View (emailsListView) do you have the "Enable instance values" property active in the Interaction section?

With this available you should have access to each component in the List View by key/index through the instanceValues property:

1 Like

Perfect. Thank you very much!!

1 Like