-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wrong selected value when use dom-repeat #82
Comments
iron-selector not updates its selection on dom repeat items when data change, i tested it in polymer gmail @ebidel example that app fails to update |
Please re-open this issue with a JSBin demonstrating the problem! For more details on filing issues, you can refer to our contributing guidelines. |
Hello, I demonstrated the problem in plunker: http://plnkr.co/edit/dqSFV2XQ6x1UjJdm7fFl?p=preview is it ok? do I have to open a new issue or reuse this one? |
👍 you r the bro bro |
I use iron-selector on a dom-repeat a list of item
First I set the selected value to
foo
then set the list to["bar", "foo"]
and I sawfoo
is selected as expected. But then, I set the list to["foo", "rock"]
, the selected value is alwaysfoo
, but now the real selected node isrock
, notfoo
. So the selected value is no longer tells the real selected node.The text was updated successfully, but these errors were encountered: