There's an Event and Handler item on the 1.1 TODO list Could this be
part of that?
< http://jakarta.apache.org/struts/todo-1.1.html >
David Geary made nice proposal orginally, but I can't find it in the
current archives. (David, still with us?)
Though at this point, I'd personally like to see something that was
compatible with Barracuda (and entirely optional).
< http://barracuda.enhydra.org/ >
This might also play nice with the workflow proposal, since I don' tknow
how anything but the simplest of workflows would be possble with what we
have now.
-- Ted Husted, Husted dot Com, Fairport NY USA.
-- Custom Software ~ Technical Services.
-- Tel 716 737-3463.
-- http://www.husted.com/about/struts/
> Jeff Trent wrote:
>
> New here ... so bare with me.
>
> I'd like to propose the following enhancement to ActionForm:
>
> public void addListener(ActionFormListener);
> public void removeListener(ActionFormListener);
>
> Here is the basics of ActionFormListener I'm interested in to start
> out with:
>
> public abstract class ActionFormListener
> {
> public static final int ACTION_TYPE_PAGE_PRE_RENDERED = 1;
> public static final int ACTION_TYPE_PAGE_POST_RENDERED = 2;
>
> public abstract void actionFormNotify(int actionType, String
> context /* reserved for future use*/);
> }
>
>
> ---
>
> These messages would be sent before and after the RequestDispatcher
> included or forwarded to the JSP page.
>
> The primary reason I'm propsing this feature is to allocate / free
> (respectfully) scarce resources that I would like to be made available
> on the page that I do not want to serialize to transient members of my
> form.
>
> thank you,
> jeffrey trent
>