I'm having problems re-rendering an iron-list after changing an item property.
I need iron-list to re-render to apply new classes just like it does when i push or splice items.
Already tried almost everything(notifyPath, resize, _update, ...) but still doesn't make it work.
Please help :)
Below you can find an jsfiddle to ilustrate:
work OK:
this.set('words.'+i+'.checked', true);
NOT work:
this.notifyPath('words.'+i+'.checked');