This is the head of my HomePage.html:

<html class="ui-mobile">
 <head>
  <title>tagmagic.com</title>
        <link rel="stylesheet"
href="http://www.server.com/acn/site/css/jquery.mobile-1.0a3.min.css"; />
        
        
 </head>

As you can see I've to point the css and js to an external url as if I put
it as a resource in the java package is never loaded. 

For the second part this is the code more or less:

HomePage.java

final PageParameters pp = new PageParameters();
pp.set("campaign", url, 0);
pp.set("box", b.getId(), 1);
Link link = new Link<Void>("linkbox") {
        @Override
         public void onClick() {
              setResponsePage(new FeedbackBoxPage(pp));
         }
};

In Application.java

 mountPage("/feedback/", FeedbackBoxPage.class);

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/URL-with-root-parameters-tp4089764p4091048.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to