I am iterating over list of objects using key value pair ng-repeat .I want to add a dynamic ng-model to a checkbox. I have searched a lot but i didn't find any solution.I though found a similar question - define dynamic ng-model inside key value pair ng-repeat but it seems to be unanswered.
<div id="details_{{key}}" ng-repeat="(key,value) in value" >
<input type="checkbox" ng-model="" ng-change="single_chk()">
</div>
How can i add dynamic property for ng-model for the above ng-repeat and i have to pass that value inside ng-change too?