Hi,

I'm feeling like posting a very trivial problem but unfortunately I can't
find my mistake.

I have a actionlink in a component to reset some persisted booleans. The
actionlink looks like this:

<t:actionlink id="reset">Reset</t:actionlink>

And the triggered method like this:

    @OnEvent(component = "reset")
    public Object reset(){
        tableParsed = false;
        saveSucceed = false;
        return null;
    }

But the booleans are not resetted. It only works when I remove the
("component="reset") or rename reset() to onAction(). But then I also reset
the variables on form submits.

What am I doing wrong?

Thanks.

-- 
View this message in context: 
http://n2.nabble.com/ActionLink-in-component-tp1329406p1329406.html
Sent from the Tapestry Users mailing list archive at Nabble.com.


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

Reply via email to