
Announcements
I don't know why but When I attempt to save the form with my Custom PCF control that have a input of type lookup it is giving an error "We ran into a problem publishing the form. Please try again. (SessionID: 260112e0-f34d-11ee-8d75-f70c432897b0)"
Error I can see through innerError in the console is "Property TestField is configured as a static value and cannot be declared as static."
I have <property name="TestField" display-name-key="Test Field" description-key="test" of-type="Lookup.Simple" usage="input" required="false" /> in ControlManifest file and I want to use that selected field to filter records.
In your ControlManifest.Input.xml, check that usage is "bound" instead of "input". Bound means a column and Input means a static (manual) configuration. Lookup only makes sense as bound.
<property name="TestField" display-name-key="Test Field" description-key="test" of-type="Lookup.Simple" usage="bound" required="false" />