Re: external image inside link

2009-02-24 Thread Timo Rantalaiho
On Tue, 24 Feb 2009, novotny wrote:
> I tried to do something like ExternalLink("link", "http://www.gohere.com";, "
> \"images/logos/" "); but it escaped the img I tried to pass in as a label.

setEscapeModelStrings(false) ?

Best wishes,
Timo

-- 
Timo Rantalaiho   
Reaktor Innovations Oyhttp://www.ri.fi/ >

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



Re: external image inside link

2009-02-24 Thread novotny


Jeremy, you're the man! That works!

Thanks a bunch, Jason


Jeremy Thomerson-5 wrote:
> 
> Sorry, missed that - but found the issue - stop passing your link the
> label
> - the link is trying to replace it's body with your label rather than the
> markup you wrote.  Do this:
> 
> ExternalLink link = new ExternalLink("bankURL", lender.getWebsite());
> StaticImage image = new StaticImage("bank", "images/logos/" +
> lender.getImageSrc(), lender.getLender());
> link.add(image);
> add(link);
> 
> 
> -- 
> Jeremy Thomerson
> http://www.wickettraining.com
> 
> 
> 
>>> ExternalLink link = new ExternalLink("bankURL",
>>> lender.getLenderWebsite(),
>>> lender.getLender());
>>>  StaticImage image = new StaticImage("bank", "images/logos/" +
>>> lender.getImageSrc(), lender.getLender());
>>>  link.add(image);
>>>  add(link);
> 
> On Tue, Feb 24, 2009 at 7:00 PM, novotny  wrote:
> 
>>
>>
>> Hi
>>
>> I am using import org.apache.wicket.markup.html.link.ExternalLink;
>>
>> in my import but I do have a custom StaticImage class:
>>
>> public class StaticImage extends WebComponent {
>>
>>private String url;
>>private String alt;
>>
>>public StaticImage(String id, String url, String alt) {
>>super(id);
>>this.url = url;
>>this.alt = alt;
>>}
>>
>>protected void onComponentTag(ComponentTag tag) {
>>super.onComponentTag(tag);
>>checkComponentTag(tag, "img");
>>tag.put("src", url);
>>tag.put("alt", alt);
>>}
>>
>> }
>>
>> Thanks again, Jason
>>
>>
>> Jeremy Thomerson-5 wrote:
>> >
>> > Wait - I just realized that your "ExternalLink" class is custom. 
>> That's
>> > the
>> > culprit.  Show us the code.
>> >
>> > On Tue, Feb 24, 2009 at 6:15 PM, novotny 
>> wrote:
>> >
>> >>
>> >> Thanks, however I still get the same error:
>> >>
>> >> WicketMessage: Expected close tag for '<a wicket:id="bankURL"
>> href="#"
>> >> target="_new">' Possible attempt to embed component(s) '<img
>> >> wicket:id="bank" alt="" class="pic"/>' in the body of this
>> component
>> >> which discards its body
>> >>
>> >> and my code looks like:
>> >>
>> >> ExternalLink link = new ExternalLink("bankURL",
>> >> lender.getLenderWebsite(),
>> >> lender.getLender());
>> >>  StaticImage image = new StaticImage("bank", "images/logos/" +
>> >> lender.getImageSrc(), lender.getLender());
>> >>  link.add(image);
>> >>  add(link);
>> >>
>> >> Thanks, Jason
>> >>
>> >>
>> >>
>> >> Jeremy Thomerson-5 wrote:
>> >> >
>> >> > I think your problem is that in your long add() call, you are
>> actually
>> >> > adding the image to your outer container rather than the link.  The
>> >> code
>> >> > is
>> >> > formatted poorly in the email.  Try this:
>> >> >
>> >> > ExternalLink link = new ExternalLink(..)
>> >> > link.add(new StaticImage(..))
>> >> > add(link);
>> >> >
>> >> > On Tue, Feb 24, 2009 at 6:03 PM, novotny 
>> >> wrote:
>> >> >
>> >> >>
>> >> >>
>> >> >> That's exactly what I tried and I get
>> >> >>
>> >> >> WicketMessage: Expected close tag for '<a wicket:id="bankURL"
>> >> href="#"
>> >> >> target="_new">' Possible attempt to embed component(s) '<img
>> >> >> wicket:id="bank" alt="" class="pic"/>' in the body of this
>> >> component
>> >> >> which discards its body
>> >> >>
>> >> >> here's my java
>> >> >> add(new ExternalLink("bankURL", lender.getLenderWebsite(),
>> >> >> lender.getLender()).add(new StaticImage("bank", "images/logos/" +
>> >> >> lender.getImageS

Re: external image inside link

2009-02-24 Thread Jeremy Thomerson
Sorry, missed that - but found the issue - stop passing your link the label
- the link is trying to replace it's body with your label rather than the
markup you wrote.  Do this:

ExternalLink link = new ExternalLink("bankURL", lender.getWebsite());
StaticImage image = new StaticImage("bank", "images/logos/" +
lender.getImageSrc(), lender.getLender());
link.add(image);
add(link);


-- 
Jeremy Thomerson
http://www.wickettraining.com



>> ExternalLink link = new ExternalLink("bankURL",
>> lender.getLenderWebsite(),
>> lender.getLender());
>>  StaticImage image = new StaticImage("bank", "images/logos/" +
>> lender.getImageSrc(), lender.getLender());
>>  link.add(image);
>>  add(link);

On Tue, Feb 24, 2009 at 7:00 PM, novotny  wrote:

>
>
> Hi
>
> I am using import org.apache.wicket.markup.html.link.ExternalLink;
>
> in my import but I do have a custom StaticImage class:
>
> public class StaticImage extends WebComponent {
>
>private String url;
>private String alt;
>
>public StaticImage(String id, String url, String alt) {
>super(id);
>this.url = url;
>this.alt = alt;
>}
>
>protected void onComponentTag(ComponentTag tag) {
>super.onComponentTag(tag);
>checkComponentTag(tag, "img");
>tag.put("src", url);
>tag.put("alt", alt);
>}
>
> }
>
> Thanks again, Jason
>
>
> Jeremy Thomerson-5 wrote:
> >
> > Wait - I just realized that your "ExternalLink" class is custom.  That's
> > the
> > culprit.  Show us the code.
> >
> > On Tue, Feb 24, 2009 at 6:15 PM, novotny  wrote:
> >
> >>
> >> Thanks, however I still get the same error:
> >>
> >> WicketMessage: Expected close tag for '<a wicket:id="bankURL"
> href="#"
> >> target="_new">' Possible attempt to embed component(s) '<img
> >> wicket:id="bank" alt="" class="pic"/>' in the body of this component
> >> which discards its body
> >>
> >> and my code looks like:
> >>
> >> ExternalLink link = new ExternalLink("bankURL",
> >> lender.getLenderWebsite(),
> >> lender.getLender());
> >>  StaticImage image = new StaticImage("bank", "images/logos/" +
> >> lender.getImageSrc(), lender.getLender());
> >>  link.add(image);
> >>  add(link);
> >>
> >> Thanks, Jason
> >>
> >>
> >>
> >> Jeremy Thomerson-5 wrote:
> >> >
> >> > I think your problem is that in your long add() call, you are actually
> >> > adding the image to your outer container rather than the link.  The
> >> code
> >> > is
> >> > formatted poorly in the email.  Try this:
> >> >
> >> > ExternalLink link = new ExternalLink(..)
> >> > link.add(new StaticImage(..))
> >> > add(link);
> >> >
> >> > On Tue, Feb 24, 2009 at 6:03 PM, novotny 
> >> wrote:
> >> >
> >> >>
> >> >>
> >> >> That's exactly what I tried and I get
> >> >>
> >> >> WicketMessage: Expected close tag for '<a wicket:id="bankURL"
> >> href="#"
> >> >> target="_new">' Possible attempt to embed component(s) '<img
> >> >> wicket:id="bank" alt="" class="pic"/>' in the body of this
> >> component
> >> >> which discards its body
> >> >>
> >> >> here's my java
> >> >> add(new ExternalLink("bankURL", lender.getLenderWebsite(),
> >> >> lender.getLender()).add(new StaticImage("bank", "images/logos/" +
> >> >> lender.getImageSrc(), lender.getLender(;
> >> >>
> >> >>
> >> >> and my html:
> >> >> <a wicket:id="bankURL" href="#" target="_new">somewhere<img
> >> >> wicket:id="bank" alt="" class="pic"/></a>
> >> >>
> >> >> Thanks, Jason
> >> >>
> >> >>
> >> >> igor.vaynberg wrote:
> >> >> >
> >> >> > the bottom of that page shows you how to e

Re: external image inside link

2009-02-24 Thread novotny


Hi

I am using import org.apache.wicket.markup.html.link.ExternalLink;

in my import but I do have a custom StaticImage class:

public class StaticImage extends WebComponent {

private String url;
private String alt;

public StaticImage(String id, String url, String alt) {
super(id);
this.url = url;
this.alt = alt;
}

protected void onComponentTag(ComponentTag tag) {
super.onComponentTag(tag);
checkComponentTag(tag, "img");
tag.put("src", url);
tag.put("alt", alt);
}

}

Thanks again, Jason


Jeremy Thomerson-5 wrote:
> 
> Wait - I just realized that your "ExternalLink" class is custom.  That's
> the
> culprit.  Show us the code.
> 
> On Tue, Feb 24, 2009 at 6:15 PM, novotny  wrote:
> 
>>
>> Thanks, however I still get the same error:
>>
>> WicketMessage: Expected close tag for '<a wicket:id="bankURL" href="#"
>> target="_new">' Possible attempt to embed component(s) '<img
>> wicket:id="bank" alt="" class="pic"/>' in the body of this component
>> which discards its body
>>
>> and my code looks like:
>>
>> ExternalLink link = new ExternalLink("bankURL",
>> lender.getLenderWebsite(),
>> lender.getLender());
>>  StaticImage image = new StaticImage("bank", "images/logos/" +
>> lender.getImageSrc(), lender.getLender());
>>  link.add(image);
>>  add(link);
>>
>> Thanks, Jason
>>
>>
>>
>> Jeremy Thomerson-5 wrote:
>> >
>> > I think your problem is that in your long add() call, you are actually
>> > adding the image to your outer container rather than the link.  The
>> code
>> > is
>> > formatted poorly in the email.  Try this:
>> >
>> > ExternalLink link = new ExternalLink(..)
>> > link.add(new StaticImage(..))
>> > add(link);
>> >
>> > On Tue, Feb 24, 2009 at 6:03 PM, novotny 
>> wrote:
>> >
>> >>
>> >>
>> >> That's exactly what I tried and I get
>> >>
>> >> WicketMessage: Expected close tag for '<a wicket:id="bankURL"
>> href="#"
>> >> target="_new">' Possible attempt to embed component(s) '<img
>> >> wicket:id="bank" alt="" class="pic"/>' in the body of this
>> component
>> >> which discards its body
>> >>
>> >> here's my java
>> >> add(new ExternalLink("bankURL", lender.getLenderWebsite(),
>> >> lender.getLender()).add(new StaticImage("bank", "images/logos/" +
>> >> lender.getImageSrc(), lender.getLender(;
>> >>
>> >>
>> >> and my html:
>> >> <a wicket:id="bankURL" href="#" target="_new">somewhere<img
>> >> wicket:id="bank" alt="" class="pic"/></a>
>> >>
>> >> Thanks, Jason
>> >>
>> >>
>> >> igor.vaynberg wrote:
>> >> >
>> >> > the bottom of that page shows you how to embed an external image
>> into
>> >> > an external link.
>> >> >
>> >> > -igor
>> >> >
>> >> > On Tue, Feb 24, 2009 at 3:24 PM, novotny 
>> >> wrote:
>> >> >>
>> >> >> Hi all,
>> >> >>
>> >> >> Apologies for such a  simple question but I couldn't find
>> anything--
>> >> the
>> >> >> closet was
>> >> >> http://cwiki.apache.org/WICKET/how-to-load-an-external-image.html
>> >> >> but it just didn't work for me.
>> >> >>
>> >> >> Here's the html I want:
>> >> >>
>> >> >> <a href="http://www.gohere.com"><img
>> >> >> src="images/logo.gif"></a>
>> >> >>
>> >> >> I tried to do something like ExternalLink("link",
>> >> >> "http://www.gohere.com";,
>> >> >> "<img src=\"images/logos/" + lender.getImageSrc() + "\"/>");
>> but
>> >> it
>> >> >> escaped the img I tried to pass in as a label.
>> >> >>
>> >> >> Thanks a bunch!
>> >&g

Re: external image inside link

2009-02-24 Thread Jeremy Thomerson
Wait - I just realized that your "ExternalLink" class is custom.  That's the
culprit.  Show us the code.

On Tue, Feb 24, 2009 at 6:15 PM, novotny  wrote:

>
> Thanks, however I still get the same error:
>
> WicketMessage: Expected close tag for '<a wicket:id="bankURL" href="#"
> target="_new">' Possible attempt to embed component(s) '<img
> wicket:id="bank" alt="" class="pic"/>' in the body of this component
> which discards its body
>
> and my code looks like:
>
> ExternalLink link = new ExternalLink("bankURL", lender.getLenderWebsite(),
> lender.getLender());
>  StaticImage image = new StaticImage("bank", "images/logos/" +
> lender.getImageSrc(), lender.getLender());
>  link.add(image);
>  add(link);
>
> Thanks, Jason
>
>
>
> Jeremy Thomerson-5 wrote:
> >
> > I think your problem is that in your long add() call, you are actually
> > adding the image to your outer container rather than the link.  The code
> > is
> > formatted poorly in the email.  Try this:
> >
> > ExternalLink link = new ExternalLink(..)
> > link.add(new StaticImage(..))
> > add(link);
> >
> > On Tue, Feb 24, 2009 at 6:03 PM, novotny  wrote:
> >
> >>
> >>
> >> That's exactly what I tried and I get
> >>
> >> WicketMessage: Expected close tag for '<a wicket:id="bankURL"
> href="#"
> >> target="_new">' Possible attempt to embed component(s) '<img
> >> wicket:id="bank" alt="" class="pic"/>' in the body of this component
> >> which discards its body
> >>
> >> here's my java
> >> add(new ExternalLink("bankURL", lender.getLenderWebsite(),
> >> lender.getLender()).add(new StaticImage("bank", "images/logos/" +
> >> lender.getImageSrc(), lender.getLender(;
> >>
> >>
> >> and my html:
> >> <a wicket:id="bankURL" href="#" target="_new">somewhere<img
> >> wicket:id="bank" alt="" class="pic"/></a>
> >>
> >> Thanks, Jason
> >>
> >>
> >> igor.vaynberg wrote:
> >> >
> >> > the bottom of that page shows you how to embed an external image into
> >> > an external link.
> >> >
> >> > -igor
> >> >
> >> > On Tue, Feb 24, 2009 at 3:24 PM, novotny 
> >> wrote:
> >> >>
> >> >> Hi all,
> >> >>
> >> >> Apologies for such a  simple question but I couldn't find anything--
> >> the
> >> >> closet was
> >> >> http://cwiki.apache.org/WICKET/how-to-load-an-external-image.html
> >> >> but it just didn't work for me.
> >> >>
> >> >> Here's the html I want:
> >> >>
> >> >> <a href="http://www.gohere.com"><img
> >> >> src="images/logo.gif"></a>
> >> >>
> >> >> I tried to do something like ExternalLink("link",
> >> >> "http://www.gohere.com";,
> >> >> "<img src=\"images/logos/" + lender.getImageSrc() + "\"/>");
> but
> >> it
> >> >> escaped the img I tried to pass in as a label.
> >> >>
> >> >> Thanks a bunch!
> >> >>
> >> >> Jason
> >> >> --
> >> >> View this message in context:
> >> >>
> >>
> http://www.nabble.com/external-image-inside-link-tp22193027p22193027.html
> >> >> Sent from the Wicket - User 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
> >> >>
> >> >>
> >> >
> >> > -
> >> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> >> > For additional commands, e-mail: users-h...@wicket.apache.org
> >> >
> >> >
> >> >
> >>
> >> --
> >> View this message in context:
> >>
> http://www.nabble.com/external-image-inside-link-tp22193027p22193550.html
> >> Sent from the Wicket - User 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
> >>
> >>
> >
> >
> > --
> > Jeremy Thomerson
> > http://www.wickettraining.com
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/external-image-inside-link-tp22193027p22193714.html
> Sent from the Wicket - User 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
>
>


-- 
Jeremy Thomerson
http://www.wickettraining.com


Re: external image inside link

2009-02-24 Thread novotny

Thanks, however I still get the same error:

WicketMessage: Expected close tag for '<a wicket:id="bankURL" href="#"
target="_new">' Possible attempt to embed component(s) '<img
wicket:id="bank" alt="" class="pic"/>' in the body of this component
which discards its body

and my code looks like:

ExternalLink link = new ExternalLink("bankURL", lender.getLenderWebsite(),
lender.getLender());
 StaticImage image = new StaticImage("bank", "images/logos/" +
lender.getImageSrc(), lender.getLender());
 link.add(image);
 add(link);

Thanks, Jason



Jeremy Thomerson-5 wrote:
> 
> I think your problem is that in your long add() call, you are actually
> adding the image to your outer container rather than the link.  The code
> is
> formatted poorly in the email.  Try this:
> 
> ExternalLink link = new ExternalLink(..)
> link.add(new StaticImage(..))
> add(link);
> 
> On Tue, Feb 24, 2009 at 6:03 PM, novotny  wrote:
> 
>>
>>
>> That's exactly what I tried and I get
>>
>> WicketMessage: Expected close tag for '<a wicket:id="bankURL" href="#"
>> target="_new">' Possible attempt to embed component(s) '<img
>> wicket:id="bank" alt="" class="pic"/>' in the body of this component
>> which discards its body
>>
>> here's my java
>> add(new ExternalLink("bankURL", lender.getLenderWebsite(),
>> lender.getLender()).add(new StaticImage("bank", "images/logos/" +
>> lender.getImageSrc(), lender.getLender(;
>>
>>
>> and my html:
>> <a wicket:id="bankURL" href="#" target="_new">somewhere<img
>> wicket:id="bank" alt="" class="pic"/></a>
>>
>> Thanks, Jason
>>
>>
>> igor.vaynberg wrote:
>> >
>> > the bottom of that page shows you how to embed an external image into
>> > an external link.
>> >
>> > -igor
>> >
>> > On Tue, Feb 24, 2009 at 3:24 PM, novotny 
>> wrote:
>> >>
>> >> Hi all,
>> >>
>> >> Apologies for such a  simple question but I couldn't find anything--
>> the
>> >> closet was
>> >> http://cwiki.apache.org/WICKET/how-to-load-an-external-image.html
>> >> but it just didn't work for me.
>> >>
>> >> Here's the html I want:
>> >>
>> >> <a href="http://www.gohere.com"><img
>> >> src="images/logo.gif"></a>
>> >>
>> >> I tried to do something like ExternalLink("link",
>> >> "http://www.gohere.com";,
>> >> "<img src=\"images/logos/" + lender.getImageSrc() + "\"/>"); but
>> it
>> >> escaped the img I tried to pass in as a label.
>> >>
>> >> Thanks a bunch!
>> >>
>> >> Jason
>> >> --
>> >> View this message in context:
>> >>
>> http://www.nabble.com/external-image-inside-link-tp22193027p22193027.html
>> >> Sent from the Wicket - User 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
>> >>
>> >>
>> >
>> > -
>> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> > For additional commands, e-mail: users-h...@wicket.apache.org
>> >
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/external-image-inside-link-tp22193027p22193550.html
>> Sent from the Wicket - User 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
>>
>>
> 
> 
> -- 
> Jeremy Thomerson
> http://www.wickettraining.com
> 
> 

-- 
View this message in context: 
http://www.nabble.com/external-image-inside-link-tp22193027p22193714.html
Sent from the Wicket - User 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



Re: external image inside link

2009-02-24 Thread Jeremy Thomerson
I think your problem is that in your long add() call, you are actually
adding the image to your outer container rather than the link.  The code is
formatted poorly in the email.  Try this:

ExternalLink link = new ExternalLink(..)
link.add(new StaticImage(..))
add(link);

On Tue, Feb 24, 2009 at 6:03 PM, novotny  wrote:

>
>
> That's exactly what I tried and I get
>
> WicketMessage: Expected close tag for '<a wicket:id="bankURL" href="#"
> target="_new">' Possible attempt to embed component(s) '<img
> wicket:id="bank" alt="" class="pic"/>' in the body of this component
> which discards its body
>
> here's my java
> add(new ExternalLink("bankURL", lender.getLenderWebsite(),
> lender.getLender()).add(new StaticImage("bank", "images/logos/" +
> lender.getImageSrc(), lender.getLender(;
>
>
> and my html:
> <a wicket:id="bankURL" href="#" target="_new">somewhere<img
> wicket:id="bank" alt="" class="pic"/></a>
>
> Thanks, Jason
>
>
> igor.vaynberg wrote:
> >
> > the bottom of that page shows you how to embed an external image into
> > an external link.
> >
> > -igor
> >
> > On Tue, Feb 24, 2009 at 3:24 PM, novotny  wrote:
> >>
> >> Hi all,
> >>
> >> Apologies for such a  simple question but I couldn't find anything-- the
> >> closet was
> >> http://cwiki.apache.org/WICKET/how-to-load-an-external-image.html
> >> but it just didn't work for me.
> >>
> >> Here's the html I want:
> >>
> >> <a href="http://www.gohere.com"><img
> >> src="images/logo.gif"></a>
> >>
> >> I tried to do something like ExternalLink("link",
> >> "http://www.gohere.com";,
> >> "<img src=\"images/logos/" + lender.getImageSrc() + "\"/>"); but
> it
> >> escaped the img I tried to pass in as a label.
> >>
> >> Thanks a bunch!
> >>
> >> Jason
> >> --
> >> View this message in context:
> >>
> http://www.nabble.com/external-image-inside-link-tp22193027p22193027.html
> >> Sent from the Wicket - User 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
> >>
> >>
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/external-image-inside-link-tp22193027p22193550.html
> Sent from the Wicket - User 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
>
>


-- 
Jeremy Thomerson
http://www.wickettraining.com


Re: external image inside link

2009-02-24 Thread novotny


That's exactly what I tried and I get 

WicketMessage: Expected close tag for '<a wicket:id="bankURL" href="#"
target="_new">' Possible attempt to embed component(s) '<img
wicket:id="bank" alt="" class="pic"/>' in the body of this component
which discards its body

here's my java 
add(new ExternalLink("bankURL", lender.getLenderWebsite(),
lender.getLender()).add(new StaticImage("bank", "images/logos/" +
lender.getImageSrc(), lender.getLender(;


and my html:
<a wicket:id="bankURL" href="#" target="_new">somewhere<img
wicket:id="bank" alt="" class="pic"/></a>

Thanks, Jason


igor.vaynberg wrote:
> 
> the bottom of that page shows you how to embed an external image into
> an external link.
> 
> -igor
> 
> On Tue, Feb 24, 2009 at 3:24 PM, novotny  wrote:
>>
>> Hi all,
>>
>> Apologies for such a  simple question but I couldn't find anything-- the
>> closet was
>> http://cwiki.apache.org/WICKET/how-to-load-an-external-image.html
>> but it just didn't work for me.
>>
>> Here's the html I want:
>>
>> <a href="http://www.gohere.com"><img
>> src="images/logo.gif"></a>
>>
>> I tried to do something like ExternalLink("link",
>> "http://www.gohere.com";,
>> "<img src=\"images/logos/" + lender.getImageSrc() + "\"/>"); but it
>> escaped the img I tried to pass in as a label.
>>
>> Thanks a bunch!
>>
>> Jason
>> --
>> View this message in context:
>> http://www.nabble.com/external-image-inside-link-tp22193027p22193027.html
>> Sent from the Wicket - User 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
>>
>>
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/external-image-inside-link-tp22193027p22193550.html
Sent from the Wicket - User 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



Re: external image inside link

2009-02-24 Thread Igor Vaynberg
the bottom of that page shows you how to embed an external image into
an external link.

-igor

On Tue, Feb 24, 2009 at 3:24 PM, novotny  wrote:
>
> Hi all,
>
> Apologies for such a  simple question but I couldn't find anything-- the
> closet was http://cwiki.apache.org/WICKET/how-to-load-an-external-image.html
> but it just didn't work for me.
>
> Here's the html I want:
>
> <a href="http://www.gohere.com"><img
> src="images/logo.gif"></a>
>
> I tried to do something like ExternalLink("link", "http://www.gohere.com";,
> "<img src=\"images/logos/" + lender.getImageSrc() + "\"/>"); but it
> escaped the img I tried to pass in as a label.
>
> Thanks a bunch!
>
> Jason
> --
> View this message in context: 
> http://www.nabble.com/external-image-inside-link-tp22193027p22193027.html
> Sent from the Wicket - User 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
>
>

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



external image inside link

2009-02-24 Thread novotny

Hi all,

Apologies for such a  simple question but I couldn't find anything-- the
closet was http://cwiki.apache.org/WICKET/how-to-load-an-external-image.html
but it just didn't work for me.

Here's the html I want:

<a href="http://www.gohere.com"><img
src="images/logo.gif"></a>

I tried to do something like ExternalLink("link", "http://www.gohere.com";,
"<img src=\"images/logos/" + lender.getImageSrc() + "\"/>"); but it
escaped the img I tried to pass in as a label.

Thanks a bunch!

Jason
-- 
View this message in context: 
http://www.nabble.com/external-image-inside-link-tp22193027p22193027.html
Sent from the Wicket - User 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



external image inside link

2009-02-24 Thread novotny

Hi all,

Apologies for such a  simple question but I couldn't find anything-- the
closet was http://cwiki.apache.org/WICKET/how-to-load-an-external-image.html
but it just didn't work for me.

Here's the html I want:

http://www.gohere.com  images/logo.gif  

I tried to do something like ExternalLink("link", "http://www.gohere.com";, "
\"images/logos/" "); but it escaped the img I tried to pass in as a label.

Thanks a bunch!

Jason
-- 
View this message in context: 
http://www.nabble.com/external-image-inside-link-tp22193003p22193003.html
Sent from the Wicket - User 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