Re: [T5] missing some listener to bind component/page events ?

2007-06-28 Thread Francois Armand
#Cyrille37# wrote: In another way to explain, I would like to make by hand the same work than a t:actionLink in a t:loop the code : t:loop source=1..10 value=guess t:actionlink t:id=guess context=guess${guess}/t:actionlink /t:loop create several links like : /do.guess/4 /do.guess/6

Re: [T5] missing some listener to bind component/page events ?

2007-06-28 Thread #Cyrille37#
Francois Armand a écrit : #Cyrille37# wrote: In another way to explain, I would like to make by hand the same work than a t:actionLink in a t:loop the code : t:loop source=1..10 value=guess t:actionlink t:id=guess context=guess${guess}/t:actionlink /t:loop create several links like :

Re: [T5] missing some listener to bind component/page events ?

2007-06-28 Thread Francois Armand
#Cyrille37# wrote: Thank you François, The problem is not on the component context, but on the component id. Oups ^^ I think a listener concept is missing ! Another example : (This code is invalid because of the duplicate component id) html t:actionlink t:id=want2beRich

[T5] missing some listener to bind component/page events ?

2007-06-27 Thread #Cyrille37#
Hi (again and again ;-) Is it possible to create event for a component ?? After read guide Component Events and done some tests I could not figure howto manage differents events for a component. For exemple I would like to bind 2 links to the onActionA() method and 2 other link to the

Re: [T5] missing some listener to bind component/page events ?

2007-06-27 Thread #Cyrille37#
In another way to explain, I would like to make by hand the same work than a t:actionLink in a t:loop the code : t:loop source=1..10 value=guess t:actionlink t:id=guess context=guess${guess}/t:actionlink /t:loop create several links like : /do.guess/4 /do.guess/6 /do.guess/7 So,