Strange ng-model behavior inside ng-repeat
- by Mike Fisher
I'm trying to build up a complex post request to run a report in my Angular app.
I have a list of inputs all dynamically generated via an ng-repeat a simple version of my html looks like this.
<div ng-repeat="filter in lists.filters">
<input type="checkbox" ng-model="report.options.filters[filter.value]['type']/>
<input…