Re: ActionLink in component

2008-10-15 Thread Thiago H. de Paula Figueiredo
Em Wed, 15 Oct 2008 12:48:13 -0300, Jecki <[EMAIL PROTECTED]> escreveu: OMG, 2 days of efforts (or even more) for this trivial thing. shame on us :( and the credit goes to Thiago. That's why mailing list and forums exist: you help a little, you get helped a little. :) -- Thiago H. de Paula

Re: ActionLink in component

2008-10-15 Thread Jecki
OMG, 2 days of efforts (or even more) for this trivial thing. shame on us :( and the credit goes to Thiago. On Wed, Oct 15, 2008 at 11:31 PM, moritzgilsdorf <[EMAIL PROTECTED]> wrote: > > THANKS!! That was it! > > I knew it must be something trivial. >

Re: ActionLink in component

2008-10-15 Thread Thiago H. de Paula Figueiredo
Em Wed, 15 Oct 2008 12:31:15 -0300, moritzgilsdorf <[EMAIL PROTECTED]> escreveu: THANKS!! That was it! You're welcome! :) I knew it must be something trivial. That should maybe be a Tapestry #1 rule: You must use t:id to give an id to a component, not id (without the t: prefix). By the

Re: ActionLink in component

2008-10-15 Thread moritzgilsdorf
commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://n2.nabble.com/ActionLink-in-component-tp1329406p1337287.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]

Re: ActionLink in component

2008-10-15 Thread Thiago H. de Paula Figueiredo
Em Wed, 15 Oct 2008 12:16:13 -0300, moritzgilsdorf <[EMAIL PROTECTED]> escreveu: Thanks for the reply. I tried several types of namings, including your proposal. The method is only started when I change it for example to onAction(). A little desperate guess: try t:id="reset" instead of id=

Re: ActionLink in component

2008-10-15 Thread moritzgilsdorf
orking well. It's strange. >> > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] >

Re: ActionLink in component

2008-10-15 Thread Jecki
You might want to try using the method naming convention instead of annotation. @OnEvent(value = "reset") public Object reset(){ tableParsed = false; saveSucceed = false; return null; } change to: public Object onActionFromReset(){ tableParsed = false;

Re: ActionLink in component

2008-10-15 Thread moritzgilsdorf
have ActionLinks in other pages within the same project and they are working well. It's strange. -- View this message in context: http://n2.nabble.com/ActionLink-in-component-tp1329406p1336283.html Sent from the Tapestry Users mailing list archive at

Re: ActionLink in component

2008-10-14 Thread moritzgilsdorf
} >> >> 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 su

Re: ActionLink in component

2008-10-13 Thread mdes
ersist'ed? >> >> -- >> Thiago H. de Paula Figueiredo >> Independent Java consultant, developer, and instructor >> Consultor, desenvolvedor e instrutor em Java >> http://www.arsmachina.com.br/thiago >> >> -----------

Re: ActionLink in component

2008-10-13 Thread Howard Lewis Ship
riables 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. > > > --

Re: ActionLink in component

2008-10-13 Thread moritzgilsdorf
m.br/thiago > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://

Re: ActionLink in component

2008-10-13 Thread Thiago H. de Paula Figueiredo
Em Mon, 13 Oct 2008 14:22:36 -0200, moritzgilsdorf <[EMAIL PROTECTED]> escreveu: @OnEvent(component = "reset") public Object reset(){ tableParsed = false; saveSucceed = false; return null; } Are tableParsed and saveSucceed @Persist'ed? -- Thiago H. de Pau

ActionLink in component

2008-10-13 Thread moritzgilsdorf
ts. 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-mai