Re: Rendering block from Java

2017-01-06 Thread Thiago H. de Paula Figueiredo
Since 5.4, Tapestry has the PartialTemplateRenderer service, which renders different objects and returns them as a String: http://tapestry.apache.org/5.4/apidocs/org/apache/tapestry5/services/PartialTemplateRenderer.html . Example:

Re: Rendering block from Java

2017-01-06 Thread Thiago H. de Paula Figueiredo
On Fri, Jan 6, 2017 at 3:12 PM, Jaroslav Ciml wrote: > Hi, > > Is rendering of a block possible directly from Java code? > The way you describe in your example, I don't think so, and I would try to avoid doing this kind of thing. Couldn't you break the leading text and

Re: Rendering block from Java

2017-01-06 Thread Lance Java
There's also the capture component http://t5stitch-lazan.rhcloud.com/capturedemo On 6 Jan 2017 5:17 p.m., "Nathan Quirynen" wrote: > Hey, > > I'm not sure with blocks, but I do know that Lance (Tapestry committer) > made a library to render pages and components in

Re: Rendering block from Java

2017-01-06 Thread Nathan Quirynen
Hey, I'm not sure with blocks, but I do know that Lance (Tapestry committer) made a library to render pages and components in code. Maybe this can help you with your case? https://github.com/uklance/tapestry-offline Nathan Op 06/01/2017 om 18:12 schreef Jaroslav Ciml: Hi, Is rendering

Rendering block from Java

2017-01-06 Thread Jaroslav Ciml
Hi, Is rendering of a block possible directly from Java code? I know that I can return a block from a rendering phase method: Object beginRender() { if (someCondition) { return someBlock; // of type org.apache.tapestry5.Block } ... } However, can I do something like Object