Cool.  I'll give this a try.  For the first time, I find a framework
that provides me everything I need to make web development easier.  Other
frameworks seem to solve only one part or another.  Tapestry probably is
the only thing that fits the bill but it seems more complicated than Wicket.

I wish Wicket get a lot more traction. Thanks again.


--- Martijn Dashorst <[EMAIL PROTECTED]> wrote:
> Yes this is possible. I know this has been asked before on the maillinglist.
> 
> The outline:
>  - use a listview to generate each field (iterating through the list of
> input fields),
>  - if you need different types of input fields (checkboxes etc.) use a
> panel for each type of editor
> 
> Markup:
> 
> form page:
> <html><head></head><body>
> <form wicket:id="foo">
> <table>
> <tr wicket:id="listview">
> <td><span wicket:id="label">[name of field]</span></td>
> <td><span wicket:id="panel"></span></td>
> </tr>
> <tr><td><input type="submit" value="submit"/></td></tr>
> </table>
> </form></body></html>
> 
> text field panel:
> <html><head></head><body><wicket:panel><input type="text"
> wicket:id="editor" /></wicket:panel></body></html>
> 
> password panel:
> <html><head></head><body><wicket:panel><input type="password"
> wicket:id="editor" /></wicket:panel></body></html>
> 
> Martijn
> 
> Cuong Tran wrote:
> 
> >Hi everyone,
> >  I'm ex-WebWork user and currently takes over a Struts app
> >and am looking for something a little better than bother of
> >these framework.  Wicket seems to be what I'm been looking for.
> >I need to be able to render form input fields based on a data model
> >(which is obtained from database)  Is this possible in wicket?  
> >It seems that every input fields need to have a corresponding html element.
> >
> >Thanks for making framework available.  By the way, is there any activity
> >on the wicket-stuff project?


Cuong Q. Tran <[EMAIL PROTECTED]>


                
Yahoo! Mail
Stay connected, organized, and protected. Take the tour:
http://tour.mail.yahoo.com/mailtour.html



-------------------------------------------------------
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to