T5: Rendering a block via the DOM

2008-04-18 Thread Bill Holloway
I have a component that picks up a Block via componentResources.getBlockParameter(String). No problem. But I need to render this Block at the very bottom of the overall page, right before the /body. Any thoughts? -- Bill @ PeoplePad

Re: T5: Rendering a block via the DOM

2008-04-18 Thread Josh Canfield
I'm not sure if there is an easier way to do this, but you could configure a MarkupRendererFilter that finds and moves your elements before the page is written. This is how pageRenderSupport.addScript works, sortof... Here's something I whipped up. You could push something on the environment to

Re: T5: Rendering a block via the DOM

2008-04-18 Thread Bill Holloway
Wow, Josh. Thanks, that's a lot of work! I'll try. On Fri, Apr 18, 2008 at 6:53 PM, Josh Canfield [EMAIL PROTECTED] wrote: I'm not sure if there is an easier way to do this, but you could configure a MarkupRendererFilter that finds and moves your elements before the page is written. This is