RE: Switch Locale with cookie disabled

2012-04-05 Thread gs_tapestry
Thiago, Thank you. I am able to add locale to query parameter and retrieved. But I can’t use PersistentLocale as it is cookie-based. I made a mistake in my post. I am using Tapestry5.0.16 and don’t have those classes you mentioned. I implemented a localeRequestFitler (based an old post in th

Re: Can you render part of a Page with a MarkupWriter?

2012-04-05 Thread Chris Mylonas
(Sh... I didn't reply to the list - Sorry T, inbox flooding) HI Lance & Thiago, > Guys - thanks for sorting out my train of thought. It's now a shame that I'm driving 1000km to get somewhere for some hands on work on a boat I'm refitting getting my amateur boat building skills up and won't be ab

Re: Boolean Property Expression

2012-04-05 Thread jeshurun
Has there been any updates on this? I noticed that this still exists on 5.3. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Boolean-Property-Expression-tp2424958p5621510.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

ajax, zones and tabindex

2012-04-05 Thread greg ricker
I am having an issue where I tab between fields(textfields) in a form. The form has several fields all contained within one zone. When I move from one field to another a zone updater is called so that I can perform other operations. All this works fine until I try and tab between fields. Each time

Re: What's new in Tap5.2.x

2012-04-05 Thread Howard Lewis Ship
And why not an upgrade to 5.3? That's the current release. On Thu, Apr 5, 2012 at 7:09 AM, Robert Zeigler wrote: > Have you considered looking over the 5.0, 5.1, and 5.2 release notes? :) > > http://tapestry.apache.org/release-notes-532.html is a good place to start... > > Robert > > On Apr 5, 2

Switch Locale with cookie disabled

2012-04-05 Thread gs_tapestry
Hi, I am customizing an Tapestry 5.1 based application to make it SEO compliant. We have a working switch locale function. We use PersistentLocale in our implementation. Since PersistentLocale is Cookie-based, it stops working when we disable browser cookie ( a requirement for SEO). My questio

Re: What's new in Tap5.2.x

2012-04-05 Thread Thiago H. de Paula Figueiredo
On Thu, 05 Apr 2012 11:02:12 -0300, TechniciuM wrote: Hi there, Hi! my company is testing the possibility of moving from Tap4 to Tap5.2.x, Why not Tapestry 5.3.2 instead of 5.2? As you'd be upgrading from T4, I can see no reason for upgrading to an already outdated version. -- Thiago

Re: What's new in Tap5.2.x

2012-04-05 Thread Robert Zeigler
Not /quite/. For one thing, you can run T5 and T4 in the same app concurrently and even get them to talk to each other. So you can start by adding T5 do the T4 app and slowly converting pages over. Robert On Apr 5, 2012, at 4/511:26 AM , Jon Williams wrote: > That's easy. Your Tap 4 code, it go

Re: What's new in Tap5.2.x

2012-04-05 Thread Jon Williams
That's easy. Your Tap 4 code, it goes in the toilet, flush it bye bye. As for what's included in the Tap 5 releases simply read the release notes for each of those releases. Peace & Happy Hunting. On Thu, Apr 5, 2012 at 8:02 AM, TechniciuM wrote: > Hi there, > my company is testing the possibil

Re: What's new in Tap5.2.x

2012-04-05 Thread Robert Zeigler
Have you considered looking over the 5.0, 5.1, and 5.2 release notes? :) http://tapestry.apache.org/release-notes-532.html is a good place to start... Robert On Apr 5, 2012, at 4/59:02 AM , TechniciuM wrote: > Hi there, > my company is testing the possibility of moving from Tap4 to Tap5.2.x, >

What's new in Tap5.2.x

2012-04-05 Thread TechniciuM
Hi there, my company is testing the possibility of moving from Tap4 to Tap5.2.x, however before doing it, we have to do some research on that matter. First thing we should like to know is a listing of all the news coming from Tap5.2.x and it's previous versions Tap5.1.x and Tap5.0 . I plead all of

Tynamo Resteasy / JPA Integration

2012-04-05 Thread Thilo Tanner
Dear Tapestry Users We would like to integrate Tynamo's Resteasy module with the JPA module (from Tapestry with Hibernate 4). The problem is, that we cannot advise Tapestry to observe the @CommitAfter annotations for the web service resources. The following doesn't work: @Match("*Resource") publi

Re: Multiple Submits and Zone

2012-04-05 Thread Taha Hafeez
Hi Have you used @Persist on "message" field ?. Another way would be to use onActivate/onPassivate if possible. regards Taha On Thu, Apr 5, 2012 at 4:26 PM, resign wrote: > Hi, > > T5.2.6 > > TML: > ... > >  FIRST Submit: >   >  SECOND Submit: > > > >   ${message} > > ... > > And Java

Re: Can you render part of a Page with a MarkupWriter?

2012-04-05 Thread Thiago H. de Paula Figueiredo
On Wed, 04 Apr 2012 23:38:47 -0300, Chris Mylonas wrote: Hi All, Hi! Why don't you just write a component for rendering that part? In addition, think of blocks and the Delegate component. Better yet, take a look at how BeanEditor and the other BeanModel-based components. for( int

Re: Multiple Submits and Zone

2012-04-05 Thread resign
Hi, T5.2.6 TML: ... FIRST Submit: SECOND Submit: ${message} ... And Java File ... void onSelectedFromFIRST(){ isFIRST = true; } void onSelectedFromSECOND(){ isFIRST = false; } Object onSuccess(){ if (isFIRST){ mes

Re: tapestry5-jquery dropZone - how to get the draggable item's draggablecontext?

2012-04-05 Thread Lance Java
Hi Chris, One of tapestry's principles is static structure and dynamic behaviour ( http://tapestry.apache.org/principles.html). All components must be defined at compile time and are instantiated/managed by tapestry

Re: Multiple Submits and Zone

2012-04-05 Thread ksrijith
if you could provide the tml and java code you are using it would give much more visibility to whats going wrong.. also can you please tell which version of tapestry you are using.. - -- Don't Forget to Rate -- View this message in context: http://tapestry.1045711.n5.nabble.com/Multiple-Submi

Re: Can you render part of a Page with a MarkupWriter?

2012-04-05 Thread Lance Java
On second thought, perhaps you are asking for something far more simpler... perhaps all you need is the loop component http://tapestry.apache.org/5.3.1/apidocs/org/apache/tapestry5/corelib/components/Loop.html

Re: Can you render part of a Page with a MarkupWriter?

2012-04-05 Thread Lance Java
It would probably look more like this: @Parameter private RenderCommand listOfDraggables; @BeginRender RenderCommand beginRender() { return new RenderCommand() { public void render(MarkupWriter writer, RenderQueue queue) { doStuffBefore(writer); queue.push(listOfDraggab