Re: [Wicket-user] HTML template missing

2006-08-07 Thread Gwyn Evans
On 07/08/06, Pierre-Yves Saumont <[EMAIL PROTECTED]> wrote: > Surely enabling debug for wicket.util.resource.Resource would help. I > put a property file in the classpath with the following line : > > log4j.logger.wicket.util.resource=DEBUG > > but it doesn't change anything. > > Does any one has

Re: [Wicket-user] HTML template missing

2006-08-07 Thread Pierre-Yves Saumont
Thanks a lot, Juergen. I had copied the html and java code, bypassing the class inhéritence since the parent class was empty. But the parent template was not ! Pierre-Yves Juergen Donnerstag a écrit : > Obviously AjaxTest has inherited markup. Markup inheritance works kind > of like java class

Re: [Wicket-user] HTML template missing

2006-08-07 Thread Juergen Donnerstag
Obviously AjaxTest has inherited markup. Markup inheritance works kind of like java class inheritence. Hence you need the parents markup as well. Look at AjaxTest.java and what classes it is derived from and copy the *.java and *.html as well. E.g. PageablesPage is derived from BasePage and BasePag