I tried the following code on angularjs 1.3.0 (ajax.googleapis.com/ajax/libs/angularjs/1.3.0/angular.min.js):-
<input type="checkbox" ng-model="chkboxmodel" ng-checked="true" ng-true-value="Blue" ng-false-value="Red"></input> {{chkboxmodel}}
However, when i click on the checkbox, {{chkboxmodel}} does not return either Blue or Red.
however when I change Angularjs version to 1.2.0 I get Red or Blue.
any idea what i need to do?