Hi, i dont know what you want to "press" - however, if you want to get a list containing users with name, email and a link to edit you need first to iterate over the wicket:id="users" tag using a ListView - example can be found here: http://wicket.sourceforge.net/ExampleGuestBook.html (there the comments are iterated over and over)
Best Regards, Korbinian PS: your HTML code is invalid, as uppercase letters in tags are not allowed! (going on from XHTML 1.0, they were also deprecated in HTML from 3.01 on) > -----Ursprüngliche Nachricht----- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Im Auftrag > von Carfield Yim > Gesendet: Mittwoch, 1. November 2006 08:11 > An: [email protected] > Betreff: [Wicket-user] Problem of using border > > Say I have a page that using a border component like this: > > <div wicket:id = "main_border"> > <table> > <THEAD> > <TR> > <TH></TH> > <TH>Name</TH> > <TH>Email</TH> > </TR> > </THEAD> > <TBODY> > <span wicket:id = "users"> > <TR> > <TD><a href="#" wicket:id="user_id">Edit User</a></TD> > <TD><span wicket:id="user_name"></span></TD> > <TD><span wicket:id="user_email"></span></TD> > </TR> > </span> > </TBODY> > </table> > </div> > > How can I press <span wicket:id = "users"> to the border? In > fact this may be more than one component I like to press... > Can I just press the rendered result to HTML to the border? > > -------------------------------------------------------------- > ----------- > Using Tomcat but need to do more? Need to support web > services, security? > Get stuff done quickly with pre-integrated technology to make > your job easier Download IBM WebSphere Application Server > v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057& dat=121642 > _______________________________________________ > Wicket-user mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/wicket-user > ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Wicket-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-user
