2
Reply

How to pass Multiple Value in ng-true-value

karthi keyan

karthi keyan

Oct 22 2016 6:10 AM
477
 How to pass both MinValue and MaxValue in ng-true-value...
 
For Eg:MinValue:5000
MaxValue:10000 
 
<div ng-repeat="Price in PriceFilter">
<div class="item">
<input type="checkbox" ng-model="FilterSearch.istrPrice[$index]" ng-true-value="'{{}}'" ng-false-value=" ' ' " />
<label style="font-size:12px;margin-left:6%">
{{Price.MinValue}}
{{Price.seperator}}
{{Price.MaxValue}}
</label>
</div>
</div>

Answers (2)