Re: FormFragment stops working after refreshing containing zone

2013-06-04 Thread Ilya Obshadko
On Tue, Jun 4, 2013 at 8:50 PM, Lance Java wrote: > Short answer: > Try … > > > > Long answer: > The form's zone parameter refers to the zone's clientId (not to be confused > with the serverside id). Tapestry will auto generate a unique clientId for > your zone unless you provide an explicit clien

Re: FormFragment stops working after refreshing containing zone

2013-06-04 Thread Ilya Obshadko
I'm using multiple zone update. Hence, it's AjaxResponseRenderer and void onSuccessFromForm (). On Tue, Jun 4, 2013 at 8:55 PM, Lance Java wrote: > Also, what are you returning from your submit event? zone or > zone.getBody()? > > You should return the latter > -- Ilya Obshadko

Re: FormFragment stops working after refreshing containing zone

2013-06-04 Thread Lance Java
Also, what are you returning from your submit event? zone or zone.getBody()? You should return the latter

Re: FormFragment stops working after refreshing containing zone

2013-06-04 Thread Lance Java
Short answer: Try … Long answer: The form's zone parameter refers to the zone's clientId (not to be confused with the serverside id). Tapestry will auto generate a unique clientId for your zone unless you provide an explicit clientId.

FormFragment stops working after refreshing containing zone

2013-06-03 Thread Ilya Obshadko
I have the following scenario: ... Everything works fine up until first submit. After zone gets refreshed via AJAX (I'm using multiple zone update), FormFragment is displayed correctly but isn't *handled* correctly on next submit attempt. When FormFragment is initi