Is there a way to set a checkbox to be checked by default with a custom value instead of a boolean value?
Ready to go? <input type="checkbox" ng-model="checked" ng-init="checked=true" ng-true-value="sure" ng-false-value="nope"><br/>
<tt> {{checked}}</tt><br/>
Currently, when I try to do this nothing displays until I click the box. How can I make it so that it is automatically checked with a non-boolean default value?