On Mon, 07 Feb 2011 13:44:53 -0200, m!g <gagau...@gmail.com> wrote:

Failure writing parameter 'test' of component TestPage:test: Literal values are not updateable.

The message is quite clear: you're trying to change the value of a literal value. This happens in the first line of your method:


Object onSubmitFromForm() {
        test=true;// here!
        return null;
}

If you passed a property to the parameter, its value would be changed to true when you do test = true.

--
Thiago H. de Paula Figueiredo
Independent Java, Apache Tapestry 5 and Hibernate consultant, developer, and instructor
Owner, Ars Machina Tecnologia da Informação Ltda.
http://www.arsmachina.com.br

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to