Refreshing a from in a Zone

2014-05-31 Thread Boris Horvat
Hi everyone, I have form that basically displays couple of checkboxs that user can select/deselect. Once he is made his choice he clicks a button and a form is submited, zone is refreshed (include the form). All of the data is nicely displayed but a second submissions throws the error Forms

Re: Tapestry ClassLoading errors

2014-05-31 Thread Boris Horvat
In what package should I put this component? Currently it resides in package com.bomahabo.flow.tapestry.utility and it uses private AjaxResponseRenderer ajaxResponseRenderer; private Request request; private JavaScriptSupport javascript; Should I move it outside of the tapestry in

Re: Refreshing a from in a Zone

2014-05-31 Thread Kalle Korhonen
On Sat, May 31, 2014 at 11:55 AM, Boris Horvat horvat.z.bo...@gmail.com wrote: I have form that basically displays couple of checkboxs that user can select/deselect. Once he is made his choice he clicks a button and a form is submited, zone is refreshed (include the form). All of the data is

Re: Refreshing a from in a Zone

2014-05-31 Thread Thiago H de Paula Figueiredo
The easiest solution is to wrap the whole form inside a Zone and update this zone. On Sat, 31 May 2014 15:55:10 -0300, Boris Horvat horvat.z.bo...@gmail.com wrote: Hi everyone, I have form that basically displays couple of checkboxs that user can select/deselect. Once he is made his

Re: Refreshing a from in a Zone

2014-05-31 Thread Boris Horvat
Hi, thanks for the quick response Thiago, the entire form is already in a zone. I don't think that stack trace will help but here it is Stack trace - org.apache.tapestry5.corelib.components.Form.executeStoredActions(Form.java:649) -

Re: Refreshing a from in a Zone

2014-05-31 Thread Boris Horvat
Here is the code that will trigger the issue (I needed a bit of time to isolate everything sorry for the delay. The fact that loop is around td element is what is triggering the issue t:zone t:id=zone table tr td/td t:form

Re: Tapestry ClassLoading errors

2014-05-31 Thread Chris Mylonas
What if you move your classes from tapestry.utility to tapestry.base.utility which is controlled by tapestrymaybe http://tapestry.apache.org/class-reloading.html On 01/06/2014 4:58 am, Boris Horvat horvat.z.bo...@gmail.com wrote: In what package should I put this component? Currently it