How do you handle multiple checkboxes in Play Framework 2.0 JAVA via GET?
The url looks similar to: http://localhost:9000/games?type=platform&type=role.
How can I get both "type" values in a "Set" variable in my controller?
My form looks like this:
<input type="checkbox" name="type[]" class="" value="all-types">
<input type="checkbox" name="type[]" class="" value="platform">
<input type="checkbox" name="type[]" class="" value="role">
Thank you!