Re: Tapestry Jquery Bind

2013-05-23 Thread Emmanuel DEMEY
Hi, you can use the last snapshot I have deployed. 3.3.7-SNAPSHOT I think. Manu 2013/5/22 Boris Horvat horvat.z.bo...@gmail.com Hi Manu, Is this pushed somewhere so I can just use maven or should I download the code and build it? Cheers On Wed, May 22, 2013 at 9:47 AM, Emmanuel DEMEY

Re: Tapestry Jquery Bind

2013-05-23 Thread Boris Horvat
This seems to have fixed the problem. Thanks On Thu, May 23, 2013 at 10:01 AM, Emmanuel DEMEY demey.emman...@gmail.comwrote: Hi, you can use the last snapshot I have deployed. 3.3.7-SNAPSHOT I think. Manu 2013/5/22 Boris Horvat horvat.z.bo...@gmail.com Hi Manu, Is this pushed

Re: Tapestry Jquery Bind

2013-05-22 Thread Emmanuel DEMEY
but I think the value of your sent will not be sent. I have just pushed a small patch : https://github.com/got5/tapestry5-jquery/issues/295 Can you test it ? Manu 2013/5/22 Barry Books trs...@gmail.com You have to pass in the context t:textfield class=${selector:this} t:id=textZone

Re: Tapestry Jquery Bind

2013-05-22 Thread Jens Breitenstein
Hi All! I struggeld with something similar for some days maybe it helps you to see how I solved my problem and maybe you can reuse something...Basically I tried to find a work around for the autocomplete mixin limitations, which just accepts string as return type, thus rendering complex

Re: Tapestry Jquery Bind

2013-05-22 Thread Boris Horvat
Hi Manu, Is this pushed somewhere so I can just use maven or should I download the code and build it? Cheers On Wed, May 22, 2013 at 9:47 AM, Emmanuel DEMEY demey.emman...@gmail.comwrote: but I think the value of your sent will not be sent. I have just pushed a small patch :

Re: Tapestry Jquery Bind

2013-05-21 Thread Boris Horvat
Yea your example works, but mine does not and I cant see any difference. Do you have any idea? On Tue, May 21, 2013 at 4:34 AM, Barry Books trs...@gmail.com wrote: Here is my old test case t:zone t:id=clickZone visible=false click OK /t:zone

Re: Tapestry Jquery Bind

2013-05-21 Thread Dmitry Gusev
Is it zone=testzone vs t:zone=testzone ? the same for these attributes: event=onchange eventType=onfocus looks like you forget to add t: prefix Also make sure you've specified correct zone client id, try the same as in Barry's example, using ${zoneSlideChange.clientId}. On Tue, May 21, 2013

Re: Tapestry Jquery Bind

2013-05-21 Thread Boris Horvat
I have tried with prefix t: and it has nothing to do with that (it is not really mandatory as far as I know). But I stilled tried it. The zone name is also correct. The thing is that when I try to debug it the even it never triggered, so it cant be the zone related problem that is for sure. On

Re: Tapestry Jquery Bind

2013-05-21 Thread Jan Fryblik
I'm just guessing, but try to put there also attribute id. Its often worked for me. t:zone t:id=zoneSlideChange id=zoneSlideChange div id=status${textZone}/div /t:zone t:form t:textfield t:id=textZone t:mixins=jquery/bind event=onchange eventType=onfocus

Re: Tapestry Jquery Bind

2013-05-21 Thread Boris Horvat
Nah that is not the problem. When I have changed from onchange to change it triggered the ajax request. So I guess I should remove 'on' from my events. Thanks for help your example shad light on this :D Cheers On Tue, May 21, 2013 at 8:55 PM, Jan Fryblik jan.fryb...@ebrothers.czwrote: I'm

Re: Tapestry Jquery Bind

2013-05-21 Thread Boris Horvat
Well spoke too soon t:zone t:id=zone id=zone div id=status${textZone}/div /t:zone t:form t:textfield class=${selector:this} t:id=textZone t:mixins=jquery/bind t:event=change t:eventType=change t:zone=zone / /t:form -- @Property @Persist private String textZone;

Re: Tapestry Jquery Bind

2013-05-21 Thread Barry Books
You have to pass in the context t:textfield class=${selector:this} t:id=textZone t:mixins=jquery/bind t:event=change t:eventType=change t:zone=zone t:context=myContext / On Tue, May 21, 2013 at 2:23 PM, Boris Horvat horvat.z.bo...@gmail.comwrote: Well spoke too soon t:zone t:id=zone id=zone

Tapestry Jquery Bind

2013-05-20 Thread Boris Horvat
Did anyone used this? I cant use the example in the tapestry5-jquery as it complains that slider is not a mixin, so I guess that the example is old as slider is now a component. Still I have tried to use t:zone t:id=zoneSlideChange div id=status${textZone}/div /t:zone t:form

Re: Tapestry Jquery Bind

2013-05-20 Thread Barry Books
Here is my old test case t:zone t:id=clickZone visible=false click OK /t:zone div t:id=clickHere t:type=any t:mixins=jquery/bind t:eventType=click t:event=click t:zone=${clickzone.clientid}