I went back and edited my post. It might not have come through the mailing
list but if you look at it from the nabble website it shows up.

Josh

On Thu, Jul 26, 2012 at 2:57 PM, michael mosmann [via Apache Wicket] <
ml-node+s1842946n4650807...@n4.nabble.com> wrote:

> Are you sure, that your panel markup works? I can not see any wicket Tag
> in it?
> --
> Diese Nachricht wurde von meinem Android-Mobiltelefon mit K-9 Mail
> gesendet.
>
>
>
> jchappelle <[hidden 
> email]<http://user/SendEmail.jtp?type=node&node=4650807&i=0>>
> schrieb:
>
> I'm hitting a problem with images not being found when using CryptoMapper.
> I
> have 2 pages listed below. The dynamic image on the second page does not
> show but it does on the first page. I get to the second page by clicking
> the
> "Page 2" link on the first. The code below is from my quickstart I have
> created. It is pretty small so I figured why not list it here. Any help is
> appreciated.
>
>
> public class Page1 extends WebPage
> {
>         public Page1()
>         {
>                 add(new ImagePanel("panel"));
>                 add(new AjaxLink<Void>("page2Link")
>                 {
>                         @Override
>                         public void onClick(AjaxRequestTarget target)
>                         {
>                                 setResponsePage(Page2.class);
>                         }
>                 });
>         }
> }
>
> <!DOCTYPE html>
> <html xmlns:wicket="http://wicket.apache.org";>
>         <body>
>                 <div wicket:id="panel"></div>
>                  # Page 2
>         </body>
> </html>
>
>
> public class Page2 extends WebPage
> {
>         public Page2()
>         {
>                 add(new ImagePanel("panel"));
>         }
> }
>
> <!DOCTYPE html>
> <html xmlns:wicket="http://wicket.apache.org";>
>         <body>
>                 <div wicket:id="panel"></div>
>         </body>
> </html>
>
>
> public class ImagePanel extends Panel
> {
>         public ImagePanel(String id)
>         {
>                 super(id);
>
>                 add(new Label("dynamicImage", Model.of("Image Here:
> images/arrow-up-green.gif ")).setEscapeModelStrings(false));
>         }
> }
>
> <?xml version="1.0" encoding="UTF-8"?>
> <html xmlns="http://www.w3.org/1999/xhtml";
> xmlns:wicket="http://wicket.apache.org/";>
>         <wicket:panel>
>                 <div>Hard-Coded Image: images/arrow-up-green.gif </div>
>                 <div>Dynamic Image: </div>
>         </wicket:panel>
> </html>
>
> public class WicketApplication extends WebApplication
> {
>         @Override
>         public Class<? extends Page> getHomePage()
>         {
>                 return Page1.class;
>         }
>         @Override
>         public void init()
>         {
>                 super.init();
>                 setRootRequestMapper(new
> CryptoMapper(getRootRequestMapper(), this));
>         }
> }
>
>
>
>
>
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/Image-urls-with-CryptoMapper-tp4650805.html
> Sent from the Users forum mailing list archive at Nabble.com.
>
> _____________________________________________
>
> To unsubscribe, e-mail: [hidden 
> email]<http://user/SendEmail.jtp?type=node&node=4650807&i=1>
> For additional commands, e-mail: [hidden 
> email]<http://user/SendEmail.jtp?type=node&node=4650807&i=2>
>
>
>
> ------------------------------
>  If you reply to this email, your message will be added to the discussion
> below:
>
> http://apache-wicket.1842946.n4.nabble.com/Image-urls-with-CryptoMapper-tp4650805p4650807.html
>  To unsubscribe from Image urls with CryptoMapper, click 
> here<http://apache-wicket.1842946.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=4650805&code=amNoYXBwZWxsZUA0cmVkaS5jb218NDY1MDgwNXwtMTI5MjQyMjY0NQ==>
> .
> NAML<http://apache-wicket.1842946.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
>




--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Image-urls-with-CryptoMapper-tp4650805p4650808.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to