<tr ng-repeat="f in filters">
<td>
<select ng-model="f.column"
ui-select2
placeholder="Column"
class="form-control input-sm"
ng-change="filterChange()">
<option ng-repeat="c in params.columns" value="{{c}}">{{elementMap[c].label}}</option>
</select>
</td>
<td>
<select class="form-control input-sm"
ui-select2
ng-model="f.value"
ng-change="filterChange()">
<option ng-repeat="row in data.results" value="{{row.(f.column)}}">{{row.(f.column)}}</option>
</select>
</td>
</tr>
f.column is binded to the column name i pick up. i need something like {{row.(f.column)}} which angularjs doesn't recognize. is there any way to work around it?
thanks
--
You received this message because you are subscribed to a topic in the Google Groups "AngularJS" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/angular/bCEd0ujvnZo/unsubscribe.
To unsubscribe from this group and all its topics, send an email to angular+u...@googlegroups.com.
To post to this group, send email to ang...@googlegroups.com.
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.