Re: Ajax Navigation

2011-07-25 Thread Barry Books
Tests are on the todo list, probably in the next day or two. Here is any example that implements tabs with a zone. Image Description In A Room tab0

Re: Ajax Navigation

2011-07-25 Thread dragan.sahpas...@gmail.com
Nice, Do you have some tests for it to see it in action? I couldn't find any using the bind mixin. Cheers, Dragan Sahpaski On Mon, Jul 25, 2011 at 2:12 AM, Barry Books wrote: > If you look in my fork of tapestry5-jquery on github > > https://github.com/trsvax/tapestry5-jquery > > there is a m

Re: Ajax Navigation

2011-07-24 Thread Barry Books
If you look in my fork of tapestry5-jquery on github https://github.com/trsvax/tapestry5-jquery there is a mixin called bind that supports this. You can bind jQuery events to Tapestry component events and provide a tittle and history callback when the event is triggered. It also supports Tapestry

Re: Ajax Navigation

2011-07-24 Thread dragan.sahpas...@gmail.com
HI, On Sun, Jul 24, 2011 at 7:14 PM, stephanos2k wrote: > Thanks a lot for your post! :-) > > I looked at what you suggested, are there any hints/tips on how to > integrate > such functionality with Tapestry? > > Well it's obviously not trivial. > I suppose a JS script (like history.js) should r

Re: Ajax Navigation

2011-07-24 Thread stephanos2k
Thanks a lot for your post! :-) I looked at what you suggested, are there any hints/tips on how to integrate such functionality with Tapestry? I suppose a JS script (like history.js) should receive and handle + request and 'call' Tapestry to actually do the rendering. But I can't seem to come up

Re: Ajax Navigation

2011-07-24 Thread dragan.sahpas...@gmail.com
Hi, The approach in general is either use HTML5 history (works for html5 compatible browsers only), or use the hash change mechanism. As far as I know there is no out of the box integration with tapestry5, but there are various js scripts like the history.js