Thanks dusty. =)
On Thu, 2007-06-28 at 20:59 -0700, dusty wrote:
> You have a common interceptor problem when using relationships. The net net
> is that you need to modify your inteceptor stack so that near the top you
> have an order like
>
> params
> prepare
> params
>
> That is the first
You have a common interceptor problem when using relationships. The net net
is that you need to modify your inteceptor stack so that near the top you
have an order like
params
prepare
params
That is the first part of the solution.The second part is you need to
implement Preparable on yo
I forgot to say the version. I am using appfuse 1.9.4 and Wwbwork. This
is my save() method in StudyAction:
public String save() throws Exception {
if (cancel != null) {
return "cancel";
}
if (delete != null) {
return delete();
}
bo
Which version of Appfuse are you using and with which web framework?
Thanks
Mike.
On 6/28/07, adriel manalansan <[EMAIL PROTECTED]> wrote:
Hello to everyone,
I have 2 pojos, study and image. I did the relationship between the 2
tables and it is successful. Here it goes, from editStudy.html,
Hello to everyone,
I have 2 pojos, study and image. I did the relationship between the 2
tables and it is successful. Here it goes, from editStudy.html, i
uploaded an image(redirected to editImage.html) that uses imageAction
and saved the imageId to my study then redirect to editStudy.html again,