[polymer-dev] Some ideas about app-route element

2016-10-16 Thread Alexander Rotnov
For now, app-route element use "pattern" property to match route path and produce "data" object, that could be used for navigation. So, maybe its better to use data binding directly in pattern? Somehow like this: So, I can define property "element" in my component: properties: { ele

[polymer-dev] Call a Method From Inside dom-repeat in Polymer

2016-10-16 Thread vishnu.mohan via Polymer
I'm having this situation where I need to call a method from the dom-repeat. Below is my code. I have two arrays one is _dataArray = [{ 'abcd': 1234 }, { 'efgh': 5678 }] and _objectArray = ['abcd', 'efgh'] Below is my code [[_getColumnItemValue(rowItem, columnItem)]]