Re: Plain IMG src urls

2009-01-26 Thread Prag
(image); -- View this message in context: http://www.nabble.com/Plain-IMG-src-urls-tp21547371p21668078.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apac

Re: Plain IMG src urls

2009-01-19 Thread Prag
; How can I put this plain text URL in a HTML IMG elements' SRC attribute >>> without Wicket making modifications to the URL? >>> >> >> >> - >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org >> For additional commands, e-mail: users-

Re: Plain IMG src urls

2009-01-19 Thread Vit Rozkovec
That was too easy :) Vit Rozkovec wrote: Try this: public class ExternalImage extends WebComponent { /** * Construct. * * @param id * @param url */ public ExternalImage(String id, String url) { this(id, new Model(url)); } /** * Construct. *

Re: Plain IMG src urls

2009-01-19 Thread Vit Rozkovec
Try this: public class ExternalImage extends WebComponent { /** * Construct. * * @param id * @param url */ public ExternalImage(String id, String url) { this(id, new Model(url)); } /** * Construct. * * @param id * @param model */

Re: Plain IMG src urls

2009-01-19 Thread Scott Swank
at 9:15 AM, Prag wrote: >> >> I have a DB table that contains plain URL's in text like >> http://someExternalServer/blabla/1.jpg. >> >> How can I put this plain text URL in a HTML IMG elements' SRC attribute >> without Wicket making modifications to the

Re: Plain IMG src urls

2009-01-19 Thread Scott Swank
is plain text URL in a HTML IMG elements' SRC attribute > without Wicket making modifications to the URL? > -- > View this message in context: > http://www.nabble.com/Plain-IMG-src-urls-tp21547371p21547371.html &g

Re: Plain IMG src urls

2009-01-19 Thread Igor Vaynberg
ernalServer/blabla/1.jpg. > > How can I put this plain text URL in a HTML IMG elements' SRC attribute > without Wicket making modifications to the URL? > -- > View this message in context: > http://www.nabble.com/Plain-IMG-src-urls-tp21547371p21547371.html > Sent from th

Plain IMG src urls

2009-01-19 Thread Prag
I have a DB table that contains plain URL's in text like http://someExternalServer/blabla/1.jpg. How can I put this plain text URL in a HTML IMG elements' SRC attribute without Wicket making modifications to the URL? -- View this message in context: http://www.nabble.com/Plain-IM