We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am trying to bind an array of names to the entries in list A, but not to list B.
<div> <ul id="A"> <li data-bind="names"></li> </ul> <ul id="B"> <li></li> </ul> </div>
var data = {names: ['woody allen', 'wu tang clan']}; map.where('data-bind').is('names').to('names'); plates.bind(html, data, map);
Expected output:
<div> <ul id="A"> <li data-bind="names">woody allen</li> <li data-bind="names">wu tang clan</li> </ul> <ul id="B"> <li></li> </ul> </div>
Actual output:
<div> <ul id="A"> <li data-bind="names">woody allen</li> </ul> <ul id="B"> <li></li> <li data-bind="names">wu tang clan</li> </ul> <ul id="B"> <li></li> </ul> <ul id="B"> <li></li> </ul> </div>
If I remove list B, the data gets bound to list A properly. Any thoughts on what is happening?
Thanks
The text was updated successfully, but these errors were encountered:
Yes, this is similiar to #47. We are working on it.
Sorry, something went wrong.
Closed due to issue being duplicate
No branches or pull requests
I am trying to bind an array of names to the entries in list A, but not to list B.
Expected output:
Actual output:
If I remove list B, the data gets bound to list A properly. Any thoughts on what is happening?
Thanks
The text was updated successfully, but these errors were encountered: