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


<template is='dom-repeat' items="[[_dataArray]]" as="rowItem">
     <template is='dom-repeat' items="[[_objectArray]]" as="columnItem">
         <span>[[_getColumnItemValue(rowItem, columnItem)]]</span>
     </template></template>

and in my _getColumnItemValue method, I want to get the value for an object 
with key specified by the columnData attribute.

Like rowData[columnData]

_getColumnItemValue: function(rowData, columnData) {
    return rowData[columnData];}

My problem is the method _getColumnItemValue is not being called. Is there 
any better way to do achieve this?

Follow Polymer on Google+: plus.google.com/107187849809354688692
--- 
You received this message because you are subscribed to the Google Groups 
"Polymer" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to polymer-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/polymer-dev/751788ba-c154-4bf8-a6d7-1a7439a653d6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to