Filter Doesn't display data using AngularJS -- Javascript -



Filter Doesn't display data using AngularJS -- Javascript -

so, trying apply filter info i'm displaying. however, include filter in code can't see info beingness displayed should be. i've looked filters angularjs , creating own. seems pretty straight-forward , easy plenty implement kinds of problems occur filters? i'm looking constructive criticism angularjs , javascript, not skills computer scientist. negative comments deleted , reputation people hurt!

<thead> <tr ng-if="vm.detail == false"> <th><input type="text" ng-model="filter.divisionname" class="input-sm form-control" /></th> <th><input type="text" ng-model="filter.poolname" class="input-sm form-control" /></th> <th><input type="text" ng-model="filter.subpoolname" class="input-sm form-control" /></th> <th><input type="text" ng-model="filter.renewalgroupname" class="input-sm form-control" /></th> <th><input type="text" ng-model="filter.mchnumber" /></th> <th><input type="text" ng-model="filter.contractnumber" /></th> <th><input type="text" ng-model="filter.plancode" /></th> </tr> </thead> <tbody > <!--data division, pool, subpool, , renewalgroup searches--> <tr ng-repeat="plan in vm.plans| filter:filter |limitto:vm.pagesize " ng-if="vm.detail == false"> <td>{{plan.experiencegroup.renewalgroup.subpool.pool.division.divisionname}}</td> <td>{{plan.experiencegroup.renewalgroup.subpool.pool.poolname}}</td> <td>{{plan.experiencegroup.renewalgroup.subpool.subpoolname}}</td> <td>{{plan.experiencegroup.renewalgroup.renewalgroupname}}</td> <td><a href="#/mch/mch/{{plan.mchnumber}}">{{plan.mchnumber}}</a></td> <td>{{plan.plandesign.contractnumber}}</td> <td>{{plan.plandesign.plancode}}</td> <td>{{plan.mcp}}</td> </tr>

javascript angularjs filter ng-repeat

Comments

Popular posts from this blog

formatting - SAS SQL Datepart function returning odd values -

c++ - Apple Mach-O Linker Error(Duplicate Symbols For Architecture armv7) -

php - Yii 2: Unable to find a class into the extension 'yii2-admin' -