OK I have updated quick-start with additional page The behavior you are observing is reproducible The issue seems to be caused by the fact image URL is relative In the updated quickstart I made it absolute and everything works as expected
PS please propose PRs to this simple quick-start to speed-up investigating :) On Wed, Oct 25, 2017 at 1:34 PM, kyc <[email protected]> wrote: > Add one more level, you can see the problem > > 1. Copy HomePage .java .html to DetailPage .java .html in the same folder > > 2. In HomePage.java, add the following code: > > add(new Link<Void>("goDetail"){ > @Override > public void onClick() { > setResponsePage(DetailPage.class); > } > }); > > 3. In HomePage.html > > > -- > Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum- > f1842947.html > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > -- WBR Maxim aka solomax
