Re: [Wicket-user] Image questions

2007-07-05 Thread Gohan
The html tag error was just a typo, sorry for that. I figured out the what the problem was eventually. I had enabled resource filtering in Maven (cut and paste error) which messed up the images. So everything works fine now. Thanks igor.vaynberg wrote: > > On 7/4/07, Gohan <[EMAIL PROTECTED

Re: [Wicket-user] Image questions

2007-07-04 Thread Igor Vaynberg
On 7/4/07, Gohan <[EMAIL PROTECTED]> wrote: I'm using wicket 1.2.6 and I'd like to display simple gif images. I have the following code in my constructor for WelcomePage: add(new Image("toplogo", new ResourceReference(WelcomePage.class, "toplogo.gif"))); The ht

[Wicket-user] Image questions

2007-07-04 Thread Gohan
I'm using wicket 1.2.6 and I'd like to display simple gif images. I have the following code in my constructor for WelcomePage: add(new Image("toplogo", new ResourceReference(WelcomePage.class, "toplogo.gif"))); The html looks like: .. .. The toplogo.gif is lo