Hi everyone,
Im using wicket with maven2 and im trying to do the
http://wicket.apache.org/examplenavomatic.html navomatic-example from the
wicket-site.
the whole thing compiles and works (the first page is displayed correctly
with the border) unless i click one of the links. instead of replacing the
wicket:body of the id bodyBorder with the content of the pages, the browser
displays only those pages. its like the wicket:link has no effect at all.
Sourcecode is similar to the example (after 3 hours of trying i started with
copy and paste...).
Here is the pom.xml:
......
<dependency>
<groupId>wicket</groupId>
<artifactId>wicket</artifactId>
<version>1.2.6</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<filtering>false</filtering>
<directory>src/main/java</directory>
<includes>
<include>**</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<configuration>
<webAppSourceDirectory>${basedir}/src/main/java</webAppSourceDirectory>
<webXml>${basedir}/src/main/webapp/WEB-INF/web.xml</webXml>
</configuration>
<version>6.0.0</version>
</plugin>
</plugins>
</build>
</project>
XML and java Files are located in src/main/java
Thanks for any hint, Im working on this for a couple of hours now..
--
View this message in context:
http://www.nabble.com/wicket%3Alink-has-no-effect-tf4237816.html#a12057751
Sent from the Wicket - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]