I have the following HTML with AJS where I expect to see Is Boss? : true, when person.IsBoss has boolean true.
<span>Is Boss? :</span> <span> {{ person.IsBoss }}</span>
But it will be displayed as just
Is Boss? :
How to make AJS display "true" or "false" for boolean values?
truewill be displayed. Check that the controller is loaded correctly and the person object is at the lowest level of the controller. Alternatively, inspect the angular scope with firebug in firefox to find where the value is populated.