I got it working now. I have overriden the bind-method of the MultiActionController, catching ServletRequestBindingExceptions and doing nothing with them:
Code:
protected void bind(ServletRequest request, Object command) throws Exception
{
try
{
super.bind(request, command);
}
catch (ServletRequestBindingException e)
{
logger.info("Caught ServletRequestBindingException");
}
}
The binderror is part of the Errors object with code TypeMismatch and can be shown on the form.
Is this the only way to handle this with an MultiActionController?