Replies: 1 comment 4 replies
-
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Working with a standard HTML
<select>
anduseController
: if the user makes a selection then changes another field which requires that the select options change, I'm finding that I can't get theselect
to show itsplaceholder
again. The UI always shows the first option of the new options, even if I've calledresetField
orsetValue
first — but it's just showing in the UI, the form does have the field now set tonull
orundefined
, so it creates a UX disconnect (user thinks a selection is made but it isn't).For example, in a typical form with
country
andstate
field names (where thestate
can actually be province/region/whatever, switched out depending on the country).Any suggestions how I can get the placeholder to show in this case?
Beta Was this translation helpful? Give feedback.
All reactions