When a form is of type multipart, it's not possible to get the request
parameters calling request.getParameter("param_name") because multipart forms
are processed later, in the RequestUtils.populate() method.
Sometimes can be useful to get parameters in the reset() method, for example,
to set the value of the checkboxes in a multipage form.
Description
When a form is of type multipart, it's not possible to get the request
parameters calling request.getParameter("param_name") because multipart forms
are processed later, in the RequestUtils.populate() method.
Sometimes can be useful to get parameters in the reset() method, for example,
to set the value of the checkboxes in a multipage form.