I just started to learn the Wicket Framework, so sorry for a trivial
question... (I couldn't find the solution on the forum):

How can I change the innerHTML of the Link component dynamically?

For instance in the following code:

<a href="#" wicket:id="navLink">Page1</a>


new Link("navLink") {
          public void onClick() {
            setResponsePage(Page1.class);
          }
        } 

I would like to change the "Page1" value to something else.... 
How can I do that? 
Thank you!
--
View this message in context: 
http://www.nabble.com/Changing-the-Link-innerHTML-t1816416.html#a4951617
Sent from the Wicket - User forum at Nabble.com.



_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to