In the tapestry 5 Forms tutorial, is demonstrated how one can customize the
options in the drop down list.
The Honorific Enum values are customized in the page.properties
This works really nice.
Next I added an AddressDetail page that display address information.
For example like this:
${address.honorific}
${address.firstName}
But this time the customized enum values (in AddressDetail.properties) are
ignored and the values defined in the enum Honorific.java are printed on the
screen.
How can I customize these values, like in the drop down list?