Hi all, 

I have a LoginPage class that basically handles login through acegi. When a
user is logged in, I have  LoginPanel that shows some information about the
user, an "Edit Profile" link and a "Logout" link. 

When the user clicks on logout, I have the following blocK:

add(new Label("logoutDisplay", "Login"))
    .add(new Link("logoutLink") {
        @Override
        public void onClick() {
            ACPSession session = (ACPSession)getPage().getSession();
            session.signOut();
        }
});


Inside of the onClick override I sign them out, and I also want to redirect
them to the LoginPage but with a message that says "You have been signed
out." On my LoginPage I have a FeedbackPanel that is used for various
messages (Cannot authenticate, username required, etc). How can I leverage
the FeedbackPanel to add a message to it before it renders the page? 

Thank you very much for any insight, if anything is confusing please let me
know, 

Jin


-- 
View this message in context: 
http://www.nabble.com/how-do-I-add-a-feedback-message-to-another-page--tf4699120.html#a13433157
Sent from the Wicket - User mailing list archive at Nabble.com.


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

Reply via email to