[Actionframework-users] another enhancement request - checkboxes and multiple select
Status: Inactive
Brought to you by:
ptoman
From: Mark D. A. <md...@di...> - 2002-11-05 21:07:09
|
I'd like to be able to declare a java method like doSomething(String[] dog) which would handle: <input type="checkbox" name="dog" value="beagle"/> <input type="checkbox" name="dog" value="spitz"/> or <select name="dog" multiple="multiple"> <option value="beagle"/> <option value="spitz"/> </select> but that doesn't work because if no dogs are selected, "dog" doesn't show up at all on the query string. If I have an array argument, it should allow for no members. -mda |