Re: Advice on dynamic form elements

2008-04-14 Thread Rene Gielen
;> > tags to render the HTML. >> >> If you can express what you want to do in a JSP, it should be trivial to >> do it in a .tag file, which would give you the more concise usage. >> Otherwise, a custom tag may be worth it. >> >> L. >> >> >

Re: Advice on dynamic form elements

2008-04-10 Thread Zoran Avtarovski
Thanks Laurie, I actually thought of a tag file but thought it might be the lazy way out. We actually use them extensively for dropping in html components. I feel a lot better now. Thanks Z. > > Zoran Avtarovski wrote: >> > Hi, >> > >> > We porting/upgrading a relatively simple survey tool ov

Re: Advice on dynamic form elements

2008-04-10 Thread Laurie Harper
Zoran Avtarovski wrote: Hi, We porting/upgrading a relatively simple survey tool over to struts2 from an old php version. The tool manages questions which can one of a fixed type (radio, drop, checkbox, text) and then persists responses to DB. Where I need some advice is how to implement the st

Advice on dynamic form elements

2008-04-10 Thread Zoran Avtarovski
Hi, We porting/upgrading a relatively simple survey tool over to struts2 from an old php version. The tool manages questions which can one of a fixed type (radio, drop, checkbox, text) and then persists responses to DB. Where I need some advice is how to implement the struts 2 display mechanism.