Re: img tag (src)

2012-09-12 Thread iberck
My solution: ${image} public Link getImage() { Link link = resources.createEventLink("preview"); return link; } Object onPreview() { return new StreamResponse(){} } -- View this message in context: http://tapestry.1045711.n5.nabble.com/img-tag-src-tp24254

Re: img tag src value not get render on run time in lazy loading

2012-05-29 Thread karthi
some other plugins or will try with your solution (if none works to load the page faster with iscroll simply the solution would be pagination link) -- View this message in context: http://tapestry.1045711.n5.nabble.com/img-tag-src-value-not-get-render-on-run-time-in-lazy-loading-tp5713439p5713492

Re: img tag src value not get render on run time in lazy loading

2012-05-29 Thread Lance Java
at a later stage. Perhaps this lazyload jquery image plugin might give you some inspiration http://www.appelsiini.net/projects/lazyload -- View this message in context: http://tapestry.1045711.n5.nabble.com/img-tag-src-value-not-get-render-on-run-time-in-lazy-loading-tp5713439p5713490.html Sent

Re: img tag src value not get render on run time in lazy loading

2012-05-29 Thread karthi
Nabble swallowed my HTML... I have used the correct comment in my coding, but for the above problem only i just specified http://tapestry.1045711.n5.nabble.com/img-tag-src-value-not-get-render-on-run-time-in-lazy-loading-tp5713439p5713487.html Sent from the Tapestry - User mailing list archive

Re: img tag src value not get render on run time in lazy loading

2012-05-29 Thread Lance Java
context: http://tapestry.1045711.n5.nabble.com/img-tag-src-value-not-get-render-on-run-time-in-lazy-loading-tp5713439p5713486.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscri

Re: img tag src value not get render on run time in lazy loading

2012-05-29 Thread Lance Java
the to the DOM at a later stage. 2. Render a hidden but leave the "src" parameter empty and populate it when you show the . -- View this message in context: http://tapestry.1045711.n5.nabble.com/img-tag-src-value-not-get-render-on-run-time-in-lazy-loading-tp5713439p5713485.html Sent

Re: img tag src value not get render on run time in lazy loading

2012-05-28 Thread karthi
it hex number (a unicode value). -- View this message in context: http://tapestry.1045711.n5.nabble.com/img-tag-src-value-not-get-render-on-run-time-in-lazy-loading-tp5713439p5713483.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: img tag src value not get render on run time in lazy loading

2012-05-28 Thread karthi
comment line < ! -- to load the next items of images when the user scroll down but the tapestry does not render the value ${videoItem.image} at run time. This is my page source: --> -- View this message in context: http://tapestry.1045711.n5.nabble.com/img-tag-src-value-not-get-rende

Re: img tag src value not get render on run time in lazy loading

2012-05-28 Thread karthi
videoItems.add(item); item = new VideoItem(); } } } catch(final Exception e) { logger.error(e); } } -- View this message in cont

Re: img tag src value not get render on run time in lazy loading

2012-05-28 Thread Thiago H de Paula Figueiredo
On Mon, 28 May 2012 09:48:19 -0300, karthi wrote: Hi, Hi! Do the images work without the lazy loading? How do you get the images URLs? -- Thiago - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For addi

img tag src value not get render on run time in lazy loading

2012-05-28 Thread karthi
blem at run time, it not get the image value. any one plz suggest me a solution? -- View this message in context: http://tapestry.1045711.n5.nabble.com/img-tag-src-value-not-get-render-on-run-time-in-lazy-loading-tp5713439.html Sent from the Tapestry - User mailing list a

Re: img tag (src)

2009-03-11 Thread Luther Baker
that helps, > Elmer > > -Original Message- > From: Thiago H. de Paula Figueiredo [mailto:thiag...@gmail.com] > Sent: Wednesday, March 11, 2009 9:52 AM > To: Tapestry users > Subject: Re: img tag (src) > > Maybe > http://wiki.apache.org/tapestry/Tapestry5HowToCre

RE: img tag (src)

2009-03-11 Thread Elmer Smith
stored in the database. Hope that helps, Elmer -Original Message- From: Thiago H. de Paula Figueiredo [mailto:thiag...@gmail.com] Sent: Wednesday, March 11, 2009 9:52 AM To: Tapestry users Subject: Re: img tag (src) Maybe http://wiki.apache.org/tapestry

Re: img tag (src)

2009-03-11 Thread Thiago H. de Paula Figueiredo
Maybe http://wiki.apache.org/tapestry/Tapestry5HowToCreateASimpleGraphComponent is an example that can be adapted to what you need. > So, from a different perspective, what I really want in my page is somethin > like > Object onRender() > { > StreamResponse = ... > > return streamResponse;

Re: img tag (src)

2009-03-11 Thread Luther Baker
I was hoping to wake up to a solution/suggestion :) Anyone? So, from a different perspective, what I really want in my page is something like Object onRender() { StreamResponse = ... return streamResponse; } where I can simply return the blog - just like onActionFromId ... type hand

Re: img tag (src)

2009-03-10 Thread Luther Baker
So I've embedded an img tag as follows: The url "image/Get/1" invokes page "image/Get" with an activation context of "1". The *.java onActivate handler loads the image from Hibernate. The corresponding *.tml page only has one component on it of which takes a @Parameter of type Image ... which the

Re: img tag (src)

2009-03-10 Thread Thiago H. de Paula Figueiredo
Em Tue, 10 Mar 2009 16:57:11 -0300, Luther Baker escreveu: Am I'm looking for a render method that returns an Object - and stops the rest of the lifecycle? I would try to create a component instead. It is a more reusable solution. -- Thiago H. de Paula Figueiredo Independent Java consultan

Re: img tag (src)

2009-03-10 Thread Christine
Hi, may I suggest that the tutorial on tapestry.apache.org ("tutorial1") be updated? The "mvn create" command doesn't work for me as it is now, maven suggested I use "generate", but then you need some additional info to make it work properly. This would make life easier for newbies - like me. Maybe

img tag (src)

2009-03-10 Thread Luther Baker
If I am storing an image in the database - and would like to display it in response to I've implemented the following examples: http://wiki.apache.org/tapestry/Tapestry5HowToStreamAnExistingBinaryFile http://wiki.apache.org/tapestry/Tapestry5HowToCreateADynamicPDF and I've got that work fin