Re: [ANNOUNCE] Tapestry 5.3.0

2011-06-26 Thread Christian Köberl
On Fri, Jun 24, 2011 at 10:30 PM, Howard Lewis Ship wrote: Apache Tapestry version 5.3.0 is now available. This is the first alpha release of Tapestry 5.3. I have a suggestion for Tapestry version numbering. I think it's a bit confusing to give a regular version number to a alpha or beta

Re: [ANNOUNCE] Tapestry 5.3.0

2011-06-26 Thread Robert Zeigler
There's an ongoing discussion about this on the dev list right now. Robert On Jun 26, 2011, at 6/265:04 AM , Christian Köberl wrote: On Fri, Jun 24, 2011 at 10:30 PM, Howard Lewis Ship wrote: Apache Tapestry version 5.3.0 is now available. This is the first alpha release of Tapestry 5.3.

Re: Method arguments in template expansions

2011-06-26 Thread Joel Halbert
Cool, it works! I had tried it, but forgotten that method names are not shortened, so as Robert suggested you have to use the full method name: ${getFoo('bar')} works. ${foo('bar')} does not. On Sun, 2011-06-26 at 01:53 +0200, Martin Strand wrote: Just remember that method names are not

Re: [ANNOUNCE] Tapestry 5.3.0

2011-06-26 Thread Christian Köberl
On Jun 26, 2011, Robert Zeigler wrote: There's an ongoing discussion about this on the dev list right now. Thanks Robert - I just read it. Seems that there are quite different opinions of the committers. From a user point of view I just want one thing: mark pre-stable releases somehow.

Re: [ANN] AjaxUpload : An ajax based upload component

2011-06-26 Thread Taha Hafeez
Tested with ie, works well regards Taha On Sat, Jun 25, 2011 at 9:38 PM, Taha Hafeez tawus.tapes...@gmail.comwrote: Hi AjaxUpload is an ajax based tapestry upload component based on https://github.com/valums/file-uploader. I have tested it on Opera 10, Firefox 3.5 Chrome 12. Will test it

Re: [ANNOUNCE] Tapestry 5.3.0

2011-06-26 Thread Tony Nelson
That's great. I was just going to post a question about which version of Tap I should target for an internal app that's used by about 5 of us. I personally don't think 5.3.0 should be available as anything more than 5.3.0-SNAPSHOT until 5.3.0 is finalized. That being said, for my internal

Re: [ANNOUNCE] Tapestry 5.3.0

2011-06-26 Thread Tony Nelson
Answered my own question: [ERROR] Failed to execute goal on project helpdesk: Could not resolve dependencies for project com.starpoint:helpdesk:war:1.0.0: The following artifacts could not be resolved: org.apache.tapestry:tapestry-core:jar:5.3.0-SNAPSHOT,

Re: [ANN] AjaxUpload : An ajax based upload component

2011-06-26 Thread Kalle Korhonen
Which version of ie? Kalle On Sun, Jun 26, 2011 at 4:13 AM, Taha Hafeez tawus.tapes...@gmail.com wrote: Tested with ie, works well regards Taha On Sat, Jun 25, 2011 at 9:38 PM, Taha Hafeez tawus.tapes...@gmail.comwrote: Hi AjaxUpload is an ajax based tapestry upload component based on

Re: [ANN] AjaxUpload : An ajax based upload component

2011-06-26 Thread Taha Hafeez
I tested it on ie8, ie8 compatibility mode ie7. I will try it on ie6 tonight regards Taha On Sun, Jun 26, 2011 at 8:17 PM, Kalle Korhonen kalle.o.korho...@gmail.comwrote: Which version of ie? Kalle On Sun, Jun 26, 2011 at 4:13 AM, Taha Hafeez tawus.tapes...@gmail.com wrote: Tested

select component

2011-06-26 Thread Tony Nelson
Following the sample here: http://tapestry.apache.org/using-select-with-a-list.html I created a ValueEncoder and ValueEncoderFactory for my select model. That was simple enough. I created the actual select like this: t:select t:id=groupSelect blankLabel=[ ALL ] model=groups

Re: T5.2.5 - loop, zones and a save button

2011-06-26 Thread Alexander Rosemann
Removing the zone surrounding the textarea fixes the save issue but of course breaks the update functionality. This is the code: public class LoopWithZoneIssue { private final Logger logger = LoggerFactory.getLogger(Feedback.class); @Inject private Request request; @Property

Re: select component

2011-06-26 Thread Bob Harner
Tony, The menu options are determined by your SelectModel. Rather than using your groups list as the select model, use SelectModelFactory to generate a SelectModel for you, specifying the attribute to be used for the visible options. See the SelectWithListDemo.java example at

Re: select component

2011-06-26 Thread Tony Nelson
Thank you very much for the nicely telling me to read the entire page, not just the part I thought I needed ;) That solved everything. Thanks to the Tap team for making selects _much_ easier to work with in 5! Tony On Jun 26, 2011, at 2:57 PM, Bob Harner wrote: Tony, The menu options are

Improved Tapestry support in IntelliJ

2011-06-26 Thread Sebastian Hennebrueder
Hello, my Intellij issue http://youtrack.jetbrains.net/issue/IDEA-52080 was fixed. If you start your application server or servlet engine in debug mode and activate 'update classes and resources on frame deactivation', then you code switch to the browser and press 'reload'. Classes and

Re: [ANN] AjaxUpload : An ajax based upload component

2011-06-26 Thread Taha Hafeez
Works on ie6 too !! (I seldom happens that your script runs unaltered on ie6) regards Taha On Sun, Jun 26, 2011 at 8:19 PM, Taha Hafeez tawus.tapes...@gmail.comwrote: I tested it on ie8, ie8 compatibility mode ie7. I will try it on ie6 tonight regards Taha On Sun, Jun 26, 2011 at 8:17