Great, thanks.

Martijn Dashorst wrote:
pubic class ListPage {
    ...
        @override void onClick() {
            setResponsePage(new EditPage(getModelObject(), ListPage.this));
        }
}

public class EditPage {
    private Page previousPage;
    public EditPage(Foo edit, Page back) {
        previousPage = back;

        ...
            @override protected void onSubmit() {
                setResponsePage(previousPage);
            }
     }
}

On 10/4/07, Stanczak Group <[EMAIL PROTECTED]> wrote:
I have a classic list and edit page setup. You select an object that you
then pass to the edit page. My hang up is how to I return the user to
the list page, if the list page took a constructor parameter so it knows
what to list? In other words the list page has a constructor parameter,
so how can I just send the user back to the list page in it last state?

--
Justin Stanczak
Stanczak Group
812-735-3600

"All that is necessary for the triumph of evil is that good men do nothing."
Edmund Burke


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





--
Justin Stanczak
Stanczak Group
812-735-3600

"All that is necessary for the triumph of evil is that good men do nothing."
Edmund Burke


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to