Control a checkbox through value in scope
Description
You can control a checkbox through value in scope.
Example
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.js"></script>
</head><!-- w w w . j av a 2s. co m-->
<body>
<div ng-app ng-controller="x">
<input type="checkbox" ng-checked="y"> {{y}}
</div>
<script type='text/javascript'>
function x($scope) {
$scope.y = 1;
}
</script>
</body>
</html>