Re: Lightweight TapestryTools update site

2012-04-10 Thread Kalle Korhonen
Excellent timing then, thanks Gavin. Kalle 2012/4/10 Gavin Lei : > Hi Kalle, > > the template/java switch shortcut will come true in the 2-3 days, I am just > working for it now:-) > > 在 2012年4月11日星期三,Kalle Korhonen 写道: > >> Hey Gavin, I'm preparing a little screencast (or a series of, >> depend

Re: Tynamo Resteasy / JPA Integration

2012-04-10 Thread Thilo Tanner
Hi Thiago I agree. It would be great if your could file an issue. Sometimes it really makes no sense to separate an interface from the implementation or sometimes it would be handy to annotate the implementation instead of the interface. In case of JAX-RS, creating interfaces makes the code harder

Zone refresh image uplaod

2012-04-10 Thread bhorvat
Hi all, I have already wrote about a similar thing but did get any ideas how to solve it then (and at the point it was a minor thing I had a bigger problem). I have a zone and inside I have a image upload, when the zone is refreshed an image upload throws an exception TypeError: Cannot set pro

Re: Checkbox not changing its state after click

2012-04-10 Thread Taha Hafeez Siddiqi
Hi Yes, doesn't seem to be an issue with tapestry. Plus as it is working with other browsers,ie(as always) has to be the culprit. regards Taha On Apr 10, 2012, at 10:14 PM, pradeepchy wrote: > Hi Taha- > > Thanks for reply. My initial thought on this is some other javascript in the > applica

Re: Lightweight TapestryTools update site

2012-04-10 Thread Gavin Lei
Hi Kalle, the template/java switch shortcut will come true in the 2-3 days, I am just working for it now:-) 在 2012年4月11日星期三,Kalle Korhonen 写道: > Hey Gavin, I'm preparing a little screencast (or a series of, > depending on how much material I have) showcasing some of the newer > Tynamo modules an

Re: Is there any Tapestry5 open source integral the flex

2012-04-10 Thread François Facon
have a look at http://tapestry.ioko.com/tapestry-swfObject/ajax.html 2012/4/10 dick_hu : > My T5 project want to integral the flex. > Is there any Tapestry5 open source integral the flex? > > > -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/Is-there-any-Tapestry5-open-

Re: Lightweight TapestryTools update site

2012-04-10 Thread Kalle Korhonen
Hey Gavin, I'm preparing a little screencast (or a series of, depending on how much material I have) showcasing some of the newer Tynamo modules and the general awesomeness of Tapestry5, while also demonstrating the use of Eclipse and some of the plugins I commonly use when writing code. I'd like t

Re: DateField Update Zone

2012-04-10 Thread François Facon
Hi http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/corelib/components/datefield.js?revision=1186329&view=markup or mirror https://github.com/apache/tapestry5/blob/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/corelib/compo

Re: Got5-JQuery - Tapestry.Zone_Updated_Event

2012-04-10 Thread George Christman
Hi Landgeo, Your code should look something like this void afterRender() { js.addScript("$('#%s').bind(Tapestry.ZONE_UPDATED_EVENT, function() { " + "yourMethod()" + "});", yourZone.getClientId()); } Hope that helps. -- View this mes

Re: tapestry.apache.org down / slow

2012-04-10 Thread Howard Lewis Ship
It's been fine for me perhaps it has to do with the Twitter component built into the page? Try disabling JS and seeing what happens. On Tue, Apr 10, 2012 at 5:34 AM, Wechsung, Wulf wrote: > Hi Everyone, > > is it just a problem from my end or has tapestry.apache.org often been > unavailabl

Re: Checkbox not changing its state after click

2012-04-10 Thread pradeepchy
Hi Taha- Thanks for reply. My initial thought on this is some other javascript in the application is changing the state of the checkbox, which I am trying to figure out. Code in the template is below : - - ${message:checkbox-label} I am not using Ajax for the checkbox. -- View th

Re: Checkbox not changing its state after click

2012-04-10 Thread Taha Hafeez Siddiqi
Hi how are you using the checkbox ? Ajax or not ? Can you share the code ? regards Taha On Apr 10, 2012, at 9:29 PM, pradeepchy wrote: > Hi friends- > > I am trying to check/uncheck a checkbox on the page, but its not changing > its state. The code which I used in my tml is below : > > > Thi

Checkbox not changing its state after click

2012-04-10 Thread pradeepchy
Hi friends- I am trying to check/uncheck a checkbox on the page, but its not changing its state. The code which I used in my tml is below : This problem occurs in IE browsers only and it works in FF and others. Any suggestion would be much appreciated. -- View this message in context: http://t

Re: URL writing problem with production mode true

2012-04-10 Thread Richard Frovarp
On 04/09/2012 09:54 PM, Richard Frovarp wrote: I can verify with the 5.3 archetype, but it certainly seems to me that production mode of false lets the URLs be relative, but when you set it to true it starts to do extra work and looking to see if pages are marked as secured. I'm finding it i

Re: Tynamo Resteasy / JPA Integration

2012-04-10 Thread Thiago H. de Paula Figueiredo
On Tue, 10 Apr 2012 05:44:13 -0300, Taha Hafeez Siddiqi wrote: Hi Hi! Advices (@commitafter) work on service interfaces. Also the annotation should be on the interface method not on the implementation. I really dislike this fact (annotation in the interface method). I think I'll file

tapestry.apache.org down / slow

2012-04-10 Thread Wechsung, Wulf
Hi Everyone, is it just a problem from my end or has tapestry.apache.org often been unavailable or very slow these past few weeks? I've got no problems accessing any other websites, besides tapestry.apache.org. Is there an offline version of the site available to download so that we could host

Re: Tynamo Resteasy / JPA Integration

2012-04-10 Thread Thilo Tanner
Hi Thanks a lot for your help! I extracted interfaces from the resource classes and now it works as expected. Kind regards and have a nice day! Thilo On Tue, Apr 10, 2012 at 10:44 AM, Taha Hafeez Siddiqi wrote: > Hi > > Advices (@commitafter) work on service interfaces. Also the annotation sho

Re: Tynamo Resteasy / JPA Integration

2012-04-10 Thread Taha Hafeez Siddiqi
Hi Advices (@commitafter) work on service interfaces. Also the annotation should be on the interface method not on the implementation. Hope it helps Sent from my iPhone On Apr 10, 2012, at 1:58 PM, Thilo Tanner wrote: > Hi Alejandro, > > thanks a lot for the hint. I refactored our code accor

Re: Pushing to environment without popping

2012-04-10 Thread Lance Java
I have investigated this myself and you don't need to pop environmentals. Tapestry cleans up any thread locals at the end of a request so that a new request will not get dirty values. Obviously it's best to clean up any environmentals when they are no longer required but sometimes that is not poss

Re: Contribute custom messages

2012-04-10 Thread Henrik von Schlanbusch
Henrik von Schlanbusch enovate.no> writes: > > Hi > > We have made a locale service that extracts messages from the > database based on keys. We would like to use the service > from the tml files, and preferably to replace the > default tapestry ${message:SOME_KEY} to use our > implementati

Re: Tynamo Resteasy / JPA Integration

2012-04-10 Thread Thilo Tanner
Hi Alejandro, thanks a lot for the hint. I refactored our code according to the docs provided. The problem is, that the @CommitAfter is still not triggered by the JPA module. Our module looks like this: public class RestModule { public static void bind(ServiceBinder binder) { // R

Re: Multiple Submits and Zone

2012-04-10 Thread resign
have got no code now. But here the idea i have two submit buttons, on every textfield i'll check if the user pressed the enter key. If yes - raise "click" on second submit-button. So i use javascript and not Tapestry functionality. It sufficient for my needs. resign -- View this message in c

Re: Dynamic CSS depending on URL

2012-04-10 Thread Lance Java
Hmm... I don't suppose this has anything to do with a recent change I made to the code on github? In a previous version, every URL request pushed a Mode instance onto the Environment but Mode.getMode() could potentially return null when a "special" URL was not used. I slightly changed the impleme

Is there any Tapestry5 open source integral the flex

2012-04-10 Thread dick_hu
My T5 project want to integral the flex. Is there any Tapestry5 open source integral the flex? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Is-there-any-Tapestry5-open-source-integral-the-flex-tp5629203p5629203.html Sent from the Tapestry - User mailing list archive at