Hi,
I'm using
* tapestry 5.3.7
* tapestry5-jquery 3.3.7
* a simple form (login, password and list of role), a jquery.palette
is used to choose the roles.
It works when PRODUCTION_MODE is set to false, but my role list is
always null when PRODUCTION_MODE = true.
Using Firebug, I saw
* When PRODUCTION_MODE=true and I select an item, the value of hidden
pallette-value doesn't fill with it
|<input id="palette-values" type="hidden" name="palette-values" value="[]">
|
* So in Pallette java, parameterValue is always null
| @Override
protected void processSubmission(String controlName)
{
String parameterValue = request.getParameter(controlName + "-values");
|
But when PRODUCTION_MODE=false, it's OK
Another problem in production mode, when I click on plus arrow, a submit
is launched...
thanks for any help, Thomas