There's no event listener, but there is that ResponseWriter
API, which will get passed components on startElement().
99% works (necessarily, because PPR relies on that!).
What functionality are you trying to get here?
-- Adam
On 7/13/07, William Hoover <[EMAIL PROTECTED]> wrote:
I don't suppose there are any event listeners that can detect when components
are being rendered? It would be nice if there was a way to be able to...
component.addRendererListener(new RendererListener() {
public void processRenderBegin(RenderEvent event) {
...
}
public void processRenderEnd(RenderEvent event) {
...
}
});