Hi, all!
I have a custom built component it has an action link in it.
The markup looks lie this:
<t:actionlink id='logout'>Logut</t:actionlink>
then in the component's java source I have an event handler like this:
@OnEvent(component="logout")
public void doLogout() {
System.out.println("onActionLogout");
_loginInfo.setUserLoggedIn(false);
_loginInfo.setUsername(null);
}
the event never fires (I do not see the system out stmt)
Any idea on what am I doing wrong?
--
Thanks,
Alex.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]