Select field does not appear in formData

In a form I added several inputs and they all appear in formData so that I can use this object to send it to my backend with all the screen fields I need, however the input select components are not part of the form and do not appear in formData. What can be done so that all data editing components appear in formData automatically?

@endrigo How do you populate the select field? If it’s through a variable then the value will automatically show up. If it’s through a Collection, then you need to set the id and value.

In below image, I used a variable.

@Sambhavi My select is manually populated with text and value. That’s not the problem, the problem is that the select input does not appear in the formData object. See the image, to assemble the body of my PUT request I had to add the select input value manually.

Ah okay. I generally map values from component section of the current page. :thinking: