I have a form and I am trying to use a function in input ng-checked=\"someFunction()\" and I don\'t know if this is possible or I am doing something wrong. I ha
What you need to do is use a state variable as the ng-checked expression, eg: ng-checked="someValue". Then it is up to you elsewhere in your code to update that $scope value. The problem is that by using a function, it is unaware when in fact it should update its value.