An app I\'m working on using the Play! Framework has an object called gift with a boolean property, called Taken. How do I show the state of this value as a checkbox on my view
You just need to set the checked value against the checkbox, if the value is true.
checked
for example (assuming the object sent in from the view is called gift, and the boolean value is called Taken.
gift
Taken