[Wicket-user] Unexplained behavior...

2007-03-05 Thread Corey Puffalt
Hi... I'm new to Wicket so hopefully this will be obvious to someone else. I'm seeing what seems (to me) to be strange behavior. I've got a page into which I'm rendering some Labels with models that contain some HTML. These Labels are being rendered inside a DataView (though I doubt that

Re: [Wicket-user] Unexplained behavior...

2007-03-05 Thread Igor Vaynberg
do the urls in those img tags point back to the page? :) eg img src=/ will do it -igor On 3/5/07, Corey Puffalt [EMAIL PROTECTED] wrote: Hi... I'm new to Wicket so hopefully this will be obvious to someone else. I'm seeing what seems (to me) to be strange behavior. I've got a page into

Re: [Wicket-user] Unexplained behavior...

2007-03-05 Thread Corey Puffalt
The URLs that seem to be triggering the extra page constructions look like img src=gif/image.gif. (I only know this because the PageParameters seem to be gif = image.gif.) Corey On 3/5/07, Igor Vaynberg [EMAIL PROTECTED] wrote: do the urls in those img tags point back to the page? :) eg img

Re: [Wicket-user] Unexplained behavior...

2007-03-05 Thread Igor Vaynberg
if the page is mounted that will do it lets say you have a mount /foo and in that html you have img src=gif/image.gif/ the full path is /foo/gif/image.gif which will match your page mounted at /foo -igor On 3/5/07, Corey Puffalt [EMAIL PROTECTED] wrote: The URLs that seem to be

Re: [Wicket-user] Unexplained behavior...

2007-03-05 Thread Corey Puffalt
Ok... That does appear to match my situation (my page is mounted). Thanks, Corey On 3/5/07, Igor Vaynberg [EMAIL PROTECTED] wrote: if the page is mounted that will do it lets say you have a mount /foo and in that html you have img src=gif/image.gif/ the full path is /foo/gif/image.gif