Re: T5: service contribution conflict after updating from 5.0.17 to 5.1.0.5

2009-08-18 Thread Britske
Yeah that was it. I had t5c-commons still hanging around. Thanks. Carl Crowder wrote: > > Could it be that you have the older version of Tapestry still on the > classpath? Or some other Tapestry module that automatically adds itself? > > Britske wrote: >> Also: I should have added that I'

Re: T5 & IT Mill Toolkit ?

2009-08-18 Thread Thiago H. de Paula Figueiredo
Em Tue, 18 Aug 2009 20:04:59 -0300, matt22 escreveu: Is it possible to use T5 & IT Mill Toolkit? together? This was asked some days ago, but asking about Vaadin (IT Mill new name). Mailing list archives at http://www.nabble.com/Tapestry-f302.html. I don't know the answer, but I can't see

T5 & IT Mill Toolkit ?

2009-08-18 Thread matt22
Is it possible to use T5 & IT Mill Toolkit? together? IT Mill Toolkit - http://www.itmill.com/ thanks for any suggestions... Matt -- View this message in context: http://www.nabble.com/T5---IT-Mill-Toolkit---tp25035073p25035073.html Sent from the Tapestry - User mailing list archive at Nabble

Re: Hello. New user here!

2009-08-18 Thread Thiago H. de Paula Figueiredo
Em Tue, 18 Aug 2009 19:19:43 -0300, Martin Torre Castro escreveu: I have find an alternative solution for my problem, but I'd like to thank Kalle, Joshua and Thiago for the help. I'm interested in Tapestry and events and I will look for information about mixings and the Chenille Kit in t

Re: t5: tools to monitor

2009-08-18 Thread Borut Bolčina
We also use http://messadmin.sourceforge.net/ Cheers, Borut 2009/8/17 Angelo Chen > > Hi, > Currently I use Tomcat's manager to monitor t5 apps, is there any other > similar tools for this job? > thanks, > angelo > -- > View this message in context: > http://www.nabble.com/t5%3A-tools-to-monito

RE: Hello. New user here!

2009-08-18 Thread Martin Torre Castro
I have find an alternative solution for my problem, but I'd like to thank Kalle, Joshua and Thiago for the help. I'm interested in Tapestry and events and I will look for information about mixings and the Chenille Kit in the future. Thank you very much. > Date: Mon, 17 Aug 2009 21:24:45 -07

Re: T5: service contribution conflict after updating from 5.0.17 to 5.1.0.5

2009-08-18 Thread Carl Crowder
Could it be that you have the older version of Tapestry still on the classpath? Or some other Tapestry module that automatically adds itself? Britske wrote: Also: I should have added that I'm not contributing anything remotely related to AppModule.java Britske wrote: Hi all, I'm in the proc

Re: T5: service contribution conflict after updating from 5.0.17 to 5.1.0.5

2009-08-18 Thread Britske
Also: I should have added that I'm not contributing anything remotely related to AppModule.java Britske wrote: > > Hi all, > > I'm in the process of updating from 5.0.17 to the latest stable release: > 5.1.0.5 > Most of the process is pretty smooth except the following: > > on page X I have

T5: service contribution conflict after updating from 5.0.17 to 5.1.0.5

2009-08-18 Thread Britske
Hi all, I'm in the process of updating from 5.0.17 to the latest stable release: 5.1.0.5 Most of the process is pretty smooth except the following: on page X I have an actionlink defined which updates a zone. (see snippets below) . The problem is thaty I'm getting a 'conflicting contribution

Re: How to submit in javascript to update zone?

2009-08-18 Thread xfile80303
Thanks Shawn, That helps a lot. I'll poke around with your suggestions. Cheers, Levi On Aug 18, 2009, at 11:42, Shawn Brownfield (via Nabble) wrote: > > > > The short of this is that there doesn't appear to be a really clean > way > to do this, though I'd love to be proved wrong. Here are

Re: How to submit in javascript to update zone?

2009-08-18 Thread Shawn Brownfield
The short of this is that there doesn't appear to be a really clean way to do this, though I'd love to be proved wrong. Here are a few options I see: Option1: The most straightforward way to submit a form with a zone via Ajax would be to programatically click the submit button via Javascript:

[T5.1] MultiZoneUpdate can not be handled Error

2009-08-18 Thread sohu
you can try this: 1. make a hidden submit button with id "submit" or something you like. 2. in javascript: document.getElementById("submit").click() 2009-08-19 sohu

Re: How to submit in javascript to update zone?

2009-08-18 Thread xfile80303
This is exactly the same problem I am having as well. Even with the form's zone attribute set, form.submit() still does not trigger a form submission in which Request.isXHR() returns true. I'd love to see an answer to this one. Levi Inge Solvoll wrote: > > Form component has a zone parameter

Re: [T5.1] MultiZoneUpdate can not be handled Error

2009-08-18 Thread xfile80303
Hi Thiago, all, I appreciate your help here. Unfortunately I've not managed to get any of your suggestions working... It seems to all simplify to the problem of submitting the form in an AJAX way. So, the real question seems to be: How does one cause a Tapestry form, with a zone attribute spe

regexp validator bug (TAP5-520

2009-08-18 Thread Blower, Andy
I just tried to use regexp=^\d{3,4}$ with a regex validator and it threw a parse error, so I had to change it to regexp=^(\d{3}|\d{4})$ Looking at JIRA, this was fixed by Igor under TAP5-520 in 5.1.0.1, but I'm using 5.1.0.5 so it may not be as fixed as was originally thought. Should this issue

Re: How to submit in javascript to update zone?

2009-08-18 Thread sohu
I have used form with zone. I can click the page submit button to update zone, without refresh the whole page. But sometimes I need to submit from Javascript. Now is resolved. just like this : document.getElementById("submit").click(); 2009-08-18 sohu

Re: Zones and blocks inside components

2009-08-18 Thread Juan E. Maya
Yes that did the trick. Somehow i didn't think about it :S Thanks! On Tue, Aug 18, 2009 at 8:36 AM, Inge Solvoll wrote: > You're right, the "id" attribute of the zone will not be "uniqueified" by > Tapestry, so you have to do the job yourself. Also, the "t:id" and "id" > attributes are not the sa

Re: t5: tools to monitor

2009-08-18 Thread Paul Field
For more full-on monitoring (including Tomcat - and a lot else too), you could try: http://www.hyperic.com/ (N.B. There is a free "open source" edition and a commercial version) - Paul Jérôme BERNARD wrote on 17/08/2009 09:52:35: > Hi Angelo, > Maybe Lambda Probe (http://www.lambdaprobe.org/d/i

Re: IEngineService blocks all other Page access

2009-08-18 Thread Andreas Andreou
i think locking happens in a filter... look for DisableCacheFilter or similar On Tue, Aug 18, 2009 at 5:56 AM, Nathan Beemer wrote: > Out of curiosity... is this due to some synchronized collection(s) that back > the cache? > they block until the RequestCycle is over in order to empty them as per

Re: How to submit in javascript to update zone?

2009-08-18 Thread Inge Solvoll
Form component has a zone parameter. Use that, and the form will be submitted with AJAX. 2009/8/18 sohu > if like this: > var myAjax = new Ajax.Request("poicenter.form", { > method :'post', > parameters :"c=c", > onComplete :null > }); > tomcat will throw exception:Forms require that the

Re: ZoneUpdater is Great

2009-08-18 Thread Inge Solvoll
Hi! That will probably require some work figuring out how the T5 javascript handles multiple zones. If I run into a situation where I need this, I will post updated code to the blog. Until then, anyone is welcome to suggest a solution :) I'm guessing it's not too hard, just requires some javascri