Hello dear Wicket Gurus,

I'm currently rewrite one fat client java program to wicket one.
And I have to say that mostly this isn't a big issue but there is one
thing that I really miss in wicket.
In a program is a lot of business logic there and we used
ConfirmDialogs to go through branches.

For ex.

public void save(){
    // do some stuff here
    if( ! MessageDialog.openConfirm("some confirm message")){
        return;
    }
    // do more stuff here

    if( ! MessageDialog.openConfirm("some other confirm message")){
        // do one more stuff here
    }

    // do end stuff here
}


Is it possible to write wicket ConfirmDialog component to show HTML
confirmation dialog and then go back to my
previously executed method/place.

Maybe with custom request cycle?


Regards

Roman

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to