How do you make dom-if
templates within dom-repeat
's update when the data changes??
Example here http://jsbin.com/xatala/edit?html,output
In the example the data changes after 1.5 seconds but the dom-if's inside the template aren't re-evaluated/rendered. You can see this in the console.log. The data has changed but the view isn't updated.
How would you make this work and what is the reasoning behind it?!
dom-if
ordom-repeat
, but rather about updatingArrays
andObjects
in Polymer. – Neurothis.set('myItems.1.isGood', true);
not work? This allows Polymer to know you are setting a property within a specific array item. This isn't practical in all situations, admittedly. – Parker