Re: AW: Component event handlers

2008-03-20 Thread José Paumard
José Paumard [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 19. März 2008 17:33 An: Tapestry users Betreff: Re: AW: Component event handlers Code snippets are very basic : In the tml : click me In the class : @Inject private Block someBlock ; @OnEvent(value="someEv

Re: AW: Component event handlers

2008-03-19 Thread Howard Lewis Ship
t helps! > > 2008/3/19, Martin Kersten <[EMAIL PROTECTED]>: > > > I see. When I read the AJAX documentation correctly your code snippet > should be on the save side. > Sorry but I can't see anything wrong. > > > Cheers, > > Martin (Kersten) > &g

Re: AW: Component event handlers

2008-03-19 Thread José Paumard
etreff: Re: AW: Component event handlers Code snippets are very basic : In the tml : click me In the class : @Inject private Block someBlock ; @OnEvent(value="someEvent") Block clickMe() { return someBlock ; } What I would expect is to see the con

Re: AW: Component event handlers

2008-03-19 Thread Ted Steen
; > Von: José Paumard [mailto:[EMAIL PROTECTED] > > Gesendet: Mittwoch, 19. März 2008 17:33 > An: Tapestry users > Betreff: Re: AW: Component event handlers > > > > Code snippets are very basic : > > In the tml : > > click me > > > > >

AW: AW: Component event handlers

2008-03-19 Thread Martin Kersten
33 An: Tapestry users Betreff: Re: AW: Component event handlers Code snippets are very basic : In the tml : click me In the class : @Inject private Block someBlock ; @OnEvent(value="someEvent") Block clickMe() { return someBlock ; } What I would expec

Re: AW: Component event handlers

2008-03-19 Thread José Paumard
Code snippets are very basic : In the tml : click me someBlock">     In the class :     @Inject     private Block someBlock ;     @OnEvent(value="someEvent")     Block clickMe() {         return someBlock ;     } What I would expect is to see the content of the block in the div "som

AW: Component event handlers

2008-03-19 Thread Martin Kersten
Sounds like onActivate? What do you try to do? Can you give us the exact case (event type). Code Snippet? Von: José Paumard [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 19. März 2008 17:18 An: Tapestry users Betreff: Re: Component event handlers Hello Chris,