I'm trying to implement mapped properties for buttons on a form. Given the
following code:
private Map<String, String> removeButtons = new HashMap<String, String>();
public Map<String, String> getRemoveButtons() {
log.debug("Call to getRemoveButtons()");
return removeButtons;
}
and the following HTML:
<input type="submit" value="Remove" name="removeButtons['<string>']"
id="removebuttons['<string>']"/>
the getRemoveButtons function is never called if the string has whitespace in
it. Is this by design or a bug? Is there a workaround?
--
Todd Zimnoch
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]