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

[Wicket-user] HTML template missing

2006-08-07 Thread Pierre-Yves Saumont
Hello, I am trynig to run the PageablesPage example after having copied the bare minimum to my project. Obviously, something is missing but I can't figure what. I get the followinig error message : Markup of type 'html' for component 'com.volgadev.aloha.web.AjaxTest' not found. Enable debug me