How should I handle form requests with select elements in Playframework 2.0?
I have a form with this select:
@helper.select(deviceForm("deviceType"), options = options(deviceTypeList))
DeviceType is binded to public DeviceType deviceType; but deviceTypeList is a list of Strings
You can register a custom data binder for your type
DeviceType: