Re: tiles and best practice

2006-03-29 Thread Greg Reddin
On Mar 29, 2006, at 2:58 PM, Rolando Martinez wrote: The question is: Where Can I define the form that encapsulates defined fields in forms? Is it better to define it in a JSP page that contains the layout or to define a form for each JSP page that instances the layout? I'm not sure I fully

Re: tiles and best practice

2006-03-29 Thread Ted Husted
If I understand the question, you can create separate "Tiles" (JSP fragments) for each of the forms, and then plug those into a shared layout, which is another JSP. There are two approach, one uses tags that refers to the layout. The other uses an XML configuration file. I believe most people use

tiles and best practice

2006-03-29 Thread Rolando Martinez
Hi everyone, I'm working in a Project using Struts and tiles. Right now I have a problem and I don't know what the best way to solve it is. The problem is : there is only one layout and many JSP pages that can build the page The question is: Where Can I define the form that encapsulates defi