Re: Preferred jQuery integration?

2012-07-24 Thread Emmanuel DEMEY
Hi The best documentations is our website : http://tapestry5-jquery.com/. or the src/test app of the project : https://github.com/got5/tapestry5-jquery You can also ask your Tapestry5-jQuery relative question on your mailing list : tapestry5-jqu...@googlegroups.com and I will reply to them

Re: linksubmit t:mode=CANCEL and t:errors

2012-07-24 Thread Geoff Callender
It's not how you expect Cancel to work, and even though I knew about it I still fell into the trap, which just goes to show it's a liability. Here's the amended code that will be in the next release of JumpStart: void onValidateFromPersonForm() { if (action ==

Re: Non-HTML Views

2012-07-24 Thread Thiago H de Paula Figueiredo
On Mon, 23 Jul 2012 18:44:23 -0300, Richard Frovarp rfrov...@apache.org wrote: http://wiki.apache.org/tapestry/Tapestry5HowToStreamAnExistingBinaryFile http://wiki.apache.org/tapestry/Tapestry5HowToCreateADynamicPDF This idea works for anything you may want to return that isn't an HTML

Re: Updating a size 20 map with On Change event of 20 select components

2012-07-24 Thread Jonathan Barker
Actually, the built-in select component will handle option groups, but you need to provide a custom SelectModel. On Mon, Jul 23, 2012 at 3:13 PM, Carsten Klein carsten.kl...@axn-software.de wrote: This should have gone to the mailing list so I will repost it here: Hi Russell, see

Post-redirect-get paradigm

2012-07-24 Thread Blower, Andy
Hi, I'm trying to find the page of documentation that describes how Tapestry uses processes URL's. With details of the post-redirect-get paradigm and page render vs. event handling etc. Unfortunately I cannot find this anywhere, but I'm convinced I read one several years ago. Is my memory

Re: a zone containing a loop, containing eventlinks

2012-07-24 Thread Ray Nicholus
Sure. I solved the problem by explicitly specifying the zone ID. I then passed this zone ID into sub components. Any handlers in the sub components that needed to return the contents of the zone (for zone updates) returned false and delegated to the parent component, which returned the zone

i need example for parameters attribute in t:pagelink

2012-07-24 Thread Anbazhagan
Hi, How to use parameters attribute in pagelink component. Thank you -- View this message in context: http://tapestry.1045711.n5.nabble.com/i-need-example-for-parameters-attribute-in-t-pagelink-tp5714754.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: i need example for parameters attribute in t:pagelink

2012-07-24 Thread François Facon
Hi http://jumpstart.doublenegative.com.au/jumpstart/examples/navigation/activationcontext1 Regards 2012/7/24 Anbazhagan anbazhaga...@snovabits.net: Hi, How to use parameters attribute in pagelink component. Thank you -- View this message in context:

Missing 11 Build Path Entries

2012-07-24 Thread netdawg
I am following the tutorial trying to get going on a new project with 5.3.4 using mvn archetype:generate -DarchetypeCatalog=http://tapestry.apache.org but the following 11 build path entries are missing when loading project into eclipse even after mvn eclipse:clean mvn eclipse:eclipse

Re: Missing 11 Build Path Entries

2012-07-24 Thread netdawg
Problem/Question: Is there a quick fix to get these files? Or is it manually install each? Jetty will not launch without the plastic jar and I did not even find plastic 5.3.4, just 5.3.3. The maven dialogue allows only 5.3.4 -- View this message in context:

Re: Missing 11 Build Path Entries

2012-07-24 Thread Thiago H de Paula Figueiredo
On Tue, 24 Jul 2012 16:16:43 -0300, netdawg net.d...@yahoo.com wrote: Problem/Question: Is there a quick fix to get these files? Or is it manually install each? Jetty will not launch without the plastic jar and I did not even find plastic 5.3.4, just 5.3.3. The maven dialogue allows

Re: Injecting spring beans not in pages package

2012-07-24 Thread Thiago H de Paula Figueiredo
On Tue, 24 Jul 2012 16:17:31 -0300, Vladimir Bauer vba...@slb.com wrote: Hi! Hi! I can inject my dataDao in com.myapp.pages package, there is no problem. But I have a package com.myapp.model where I need to use dataDao as well, injecting doesn't work in this package, I end up with null

Re: Missing 11 Build Path Entries

2012-07-24 Thread Kristian Marinkovic
Try a mvn clean install in your console. It should download whatever it needs Or use an maven plugin for your IDE Am 24.07.2012 21:38 schrieb Thiago H de Paula Figueiredo thiag...@gmail.com: On Tue, 24 Jul 2012 16:16:43 -0300, netdawg net.d...@yahoo.com wrote: Problem/Question: Is there a

Re: Missing 11 Build Path Entries

2012-07-24 Thread netdawg
Thanks!! Yes, creating a Maven project within eclipse seems to be the way to go. Although there was a minor hitch. Searching for tapestry5 did not bring up org.apache.tapestry. So, have to manually install (add) it. No, as mentioned, command line quick start is not pulling in all the

Re: Tapestry 5.3.4 at JavaLobby

2012-07-24 Thread Howard Lewis Ship
Just a reminder; I'd still like to see a show of support on the JavaLobby announcement page. On Wed, Jul 18, 2012 at 2:45 PM, Howard Lewis Ship hls...@gmail.com wrote: As always, these release announcements are a good time to show your love in a visible way.

Problems with validators

2012-07-24 Thread gonzalomp87
The following code, the validators only work with javascript. If you disable not displayed on the server side. Why does this happen? form t:type=Form t:id=uploadForm t:errors/ input t:type= upload t:id= file t:value= fileup t:validate= required, regexp / br/

Re: Post-redirect-get paradigm

2012-07-24 Thread Bob Harner
I'm not sure there is any one page that covers those topics (unless you mean http://tapestry.apache.org/principles.html, which only lightly touches on them). Here are the pages that I would point to that cover the material in depth: http://tapestry.apache.org/request-processing.html

Re: Problems with validators

2012-07-24 Thread Thiago H de Paula Figueiredo
On Tue, 24 Jul 2012 21:25:28 -0300, gonzalomp87 gonzalom...@gmail.com wrote: The following code, the validators only work with javascript. If you disable not displayed on the server side. Why does this happen? form t:type=Form t:id=uploadForm t:errors/ input t:type=

Re: Missing 11 Build Path Entries

2012-07-24 Thread Bob Harner
Yes, in the last year or so the Eclipse support for Maven (the newer m2e) has improved, and now I think it's at the point that the Tapestry Tutorial could be simplified by using m2e within Eclipse and skipping the command-line-Maven stuff entirely. That would make an easier start for the many

Re: Post-redirect-get paradigm

2012-07-24 Thread Chris Collins
Tapestry is somewhat similar to Web Objects and AribaWeb (which is open source now). AribaWeb docs describes the request response cycle here: http://aribaweb.org/Documentation/CycleScope/CyclesAndScopes.htm If your not familiar with AribaWeb you should check it out, its very polished and the