So my setup is as follows:
I have a Type called “Property Type”. It has one field called “Type” with values (“Residential”, “Condo”, “Multi Family”).
Then I have a Type called “Property Listings” with one of its fields called “Property Type” and it is of type “Property Type” (basically, a relational field to the thing mentioned above). “Property Listings” has other fields such as size (Input number), photo (File upload), description (Multi line text), etc. and I have each of these fields on the front end for the user to select/set. The “Property Type” input is a dropdown type that is set to display dynamic values, so it displays “Residential, Condo, Multi Family”, etc.
So far so good.
I’ve added a button at the end of this front end user form such that when the user fills out and clicks this “Add Property” button, a new thing is created of type “Property Listing”
I am able to map all the user inputs to their corresponding field types except for dropdown values. For dropdown values specifically, when I try to set the “Property Type” field = , the dropdown property type is greyed out and doesn’t allow me to set the field value equal to the “Property Type” field. It says ‘Incompatible type’. What am I doing wrong? See below.
Any help is appreciated. Thanks.