Re: Tapestry 5.3 and multiple submits problem

2011-11-07 Thread grabarz
9902468 writes: > Hi, > > if you're using tap5-jquery, this seems to be the issue: > https://github.com/got5/tapestry5-jquery/issues/90 > Yes, I'm using tap5-jquery and this is exactly the issue. After 2 days of digging in javascripts I finally found the culprit. Hence the ticket I opened on g

Tapestry 5.3 and multiple submits problem

2011-11-04 Thread grabarz
hi, just after upgrade to tapestry 5.3 I noticed that all my handlers for SELECTED event stopped working. This is why I also lost possiblity to distinct which submit button was pressed. Have you noticed something simmilar or is it only my problem? Submitted form is ajax-ized (has zone parameter f

@BeforeRenderTemplate and @BeforeRenderBody not fired while XHR

2009-06-08 Thread grabarz
hi, is it done intentionally that both @BeforeRenderTemplate and @BeforeRenderBody are not used when component is re-rendered by ajax request? cheers, m. -- Mess with the best, die like a rest! - To unsubscribe, e-mail: users

File upload and AJAXized forms

2009-06-07 Thread grabarz
hi, is it possible to use tapestry-upload with form submitted by XHR? i was trying to use uploading in such a form, but no success. deeper digging pointed me to MultipartServletRequestFilter. in the following code: public boolean service(HttpServletRequest request, HttpServletResponse response, H

Re: T5.1.0.5 Component's body not rendered

2009-06-02 Thread grabarz
; ${userObject.username} > > > > you'd have to define passedBlock in report.java and innerblock in > page.java > > like > > @Inject > @Property > private Block passedBlock; > > Hope this helps. > Problems like this make me nervous. I hope som

Re: T5.1.0.5 Component's body not rendered

2009-06-02 Thread grabarz
there any point that comes to your mind, where i could start digging? thanks, m. Howard Lewis Ship wrote on 02 Jun 2009 22:29:24 MET: > I can't think of anything that could explain what you are seeing. Full > and partial page rendering operate on the page structure identically. > >

T5.1.0.5 Component's body not rendered

2009-06-02 Thread grabarz
hi, this is one of these 'mysterious' problems. i have a component (report) which takes a datasource and draws a table filled with data. something like a grid component provided by tapestry. this is essencial part of .tml: test

T5 how to execute javascript after zone update?

2009-04-14 Thread grabarz
is there any way to execute custom piece of javascript after zone update? inside tapestry.js i found: loadScriptsInReply : function(reply, callback) * Passed the JSON content of a Tapestry partial markup response, extracts * the script and stylesheet information. JavaScript librari

Re: T5 property with additional parameter?

2009-04-14 Thread grabarz
Thiago H. de Paula Figueiredo wrote on 14 Apr 2009 20:13:35 MET: > Em Tue, 14 Apr 2009 15:49:01 -0300, grabarz escreveu: > > > but what i need is to pass one parameter to getClazz1() to make it more > > flexible. Is there any syntax for this purpose? something like > &g

T5 property with additional parameter?

2009-04-14 Thread grabarz
hi, i'm using tapestry 5.1.0.2. is it possible somehow to use a property getter with additional parameter? e.g. following snippet uses getClazz1() to retrive class name: but what i need is to pass one parameter to getClazz1() to make it more flexible. Is there any syntax for this purpose? som