I am in the process of componentising my tapestry pages so that I can re-use
the components in other pages but would like to get some ideas on how this
should be implemented. I currently do have working implementation but don't
think it is the best solution. The solution currently looks like this:
* A page contains a form with multiple JWC components and a submit
button
* Each JWC component contains tapestry form components such as Text
Fields (The .jwc file contains the component descriptions and the .java file
contains the getter and setter methods for the components described in the
.jwc file - had to include them to prevent errors)
When the submit button is selected
cycle.getRequestContext().getParameter("field") is used to capture the user
input.
Please give any ideas you might have on how this can be better implemented.
Regards
Eddie
