I am trying to bind a checkbox to scope using ng-model. The checkbox\'s initial state corresponds to the scope model just fine, but when I check/uncheck the checkbox, the m
I struggled with this problem for a while. What worked was to bind the input to an object instead of a primitive.
Check Me! // Controller $scope.someObject.someProperty = false