You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But React/Reagent was throwing a warning: Warning: Every element in a seq should have a unique :key : ([:option {:key nil, :disabled true, :hidden true}...
After upgrading to reagent 0.6.0-rc, this doesn't work anymore. The first value of the sequence is displayed by default, no fake placeholder, and the value of the ratom (:countries here) is not selected when provided.
I tried this and removed the warning but it didn't work better as a bound form (with [bind-fields ... ...]):
[:div
[:select {:field:list:id:countries}
[:option {:key"placeholder-da39a3ee5e6b4b0d3255bfef95601890afd80709":valuenil:disabledtrue:hiddentrue}
"Select a country"]
(->> data
(map #(do [:option {:key (-> % :value)}
(:text %)]))
doall)]]
Is having the "key" attribute used for the React key and for the value a good thing? Here I really want and empty value so that null is returned to the API.
Thanks
The text was updated successfully, but these errors were encountered:
It might be an idea to add a separate attribute that would be preferred to the :key if present. This would preserve the existing behavior, but would allow decoupling the React key from the value.
I also had a related problem where I would end up with duplicate keys because the option values were the same. Here's the version I wrote which supports the :value attr on option elements in addition to supporting:key.
Hello,
I would like to have the possibility to add a fake placeholder to select lists.
I found this : http://stackoverflow.com/questions/5805059/how-do-i-make-a-placeholder-for-a-select-box
So with reagent 0.5.1 and reagent-forms 0.5.22, this was working :
But React/Reagent was throwing a warning:
Warning: Every element in a seq should have a unique :key : ([:option {:key nil, :disabled true, :hidden true}...
After upgrading to reagent 0.6.0-rc, this doesn't work anymore. The first value of the sequence is displayed by default, no fake placeholder, and the value of the ratom (:countries here) is not selected when provided.
I tried this and removed the warning but it didn't work better as a bound form (with
[bind-fields ... ...]
):Is having the "key" attribute used for the React key and for the value a good thing? Here I really want and empty value so that
null
is returned to the API.Thanks
The text was updated successfully, but these errors were encountered: