Re: simple int selection model

2011-05-09 Thread Shing Hing Man
Have you tried model="'0..5'" ? There are singe quotes. Shing --- On Tue, 10/5/11, Paul Stanton wrote: > From: Paul Stanton > Subject: simple int selection model > To: "Tapestry users" > Date: Tuesday, 10 May, 2011, 7:53 > Hi all, > > I need to make a select consisting of the options >

Re: [ANN] JumpStart 5.2.1 released

2011-05-09 Thread Yohan Yudanara
yup.. this is the best documentation :)... so great.. :-bd thank you very much... On Tue, May 10, 2011 at 5:20 AM, ael wrote: > This is the one of the BEST documentation of Tapestry. > > Keep up the good work :) > - To unsubscri

Re: simple int selection model

2011-05-09 Thread Thiago H. de Paula Figueiredo
On Mon, 09 May 2011 23:00:49 -0300, Paul Stanton wrote: Hi thiago, That's what I thought, however is being rendered as value="0..5">0..5 Have you tried model="[0, 1, 2, 3, 4, 5]"? -- Thiago H. de Paula Figueiredo Independent Java, Apache Tapestry 5 and Hibernate consultant, developer,

Re: simple int selection model

2011-05-09 Thread Paul Stanton
Hi thiago, That's what I thought, however is being rendered as value="0..5">0..5 tapestry 5.1.0.5 cheers, p. On 10/05/2011 10:47 AM, Thiago H. de Paula Figueiredo wrote: On Mon, 09 May 2011 20:53:47 -0300, Paul Stanton wrote: Hi all, Hi! I need to make a select consisting of the

Re: simple int selection model

2011-05-09 Thread Thiago H. de Paula Figueiredo
On Mon, 09 May 2011 20:53:47 -0300, Paul Stanton wrote: Hi all, Hi! I need to make a select consisting of the options 0,1,2,3,4,5. I remember reading somewhere that there is a simple syntax for defining this model - something like [model="0..5"] however that isn't it... model="0..5".

simple int selection model

2011-05-09 Thread Paul Stanton
Hi all, I need to make a select consisting of the options 0,1,2,3,4,5. I remember reading somewhere that there is a simple syntax for defining this model - something like [model="0..5"] however that isn't it... Does anyone else know what I'm referring to or was this a dream/legacy feature?

Re: transposed form loop

2011-05-09 Thread Paul Stanton
The fields are of different types so I need to use different form components ie checkbox, textfield, select ... so transposing in prior to tml would make things more complicated imho. On 4/05/2011 10:49 PM, Chris Poulsen wrote: Hi, Can't you just prepare/transpose your model in java and keep

Re: [ANN] JumpStart 5.2.1 released

2011-05-09 Thread ael
This is the one of the BEST documentation of Tapestry. Keep up the good work :) -- View this message in context: http://tapestry.1045711.n5.nabble.com/ANN-JumpStart-5-2-1-released-tp4381838p4383118.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Let's get JumpStart working with Tomcat 7

2011-05-09 Thread Geoff Callender
If you have the time to try JumpStart with Tomcat 7.0.12 then please reply to this thread with the changes you find necessary to JumpStart and/or these instructions: http://jumpstart.doublenegative.com.au/jumpstart5.2/servers_tomcat.html Thanks! Geoff --

Re: Tapestry 5.1 Page Pool Exhausted

2011-05-09 Thread Robert Zeigler
I've run into this, as well, when hitting exceptions on a page... the page is marked as dirty and isn't returned to the pool, if I recall correctly. If you can upgrade to 5.2, I would. Robert On May 9, 2011, at 5/93:24 PM , Michael Gentry wrote: > Without trying to sound too flippant, is ther

Re: Tapestry 5.1 Page Pool Exhausted

2011-05-09 Thread Michael Gentry
Without trying to sound too flippant, is there a chance you can migrate to Tapestry 5.2? (It no longer has page pools.) Also, it sounds like your application is either high-volume, your HomeInfoArea page renders really slowly (we had that happen when a page relied on an external service that slow

Re: Tapestry 5.1 Page Pool Exhausted

2011-05-09 Thread Thiago H. de Paula Figueiredo
On Mon, 09 May 2011 17:00:52 -0300, jcknight77 wrote: I changed the hard limit to a value of 150 and i'm getting the exception again.¿What can i do for resolve this issue? The best solution would be to upgrade to 5.2.5, which doesn't use a page pool anymore. -- Thiago H. de Paula Figuei

Tapestry 5.1 Page Pool Exhausted

2011-05-09 Thread jcknight77
I'm getting the following exception: The page pool for page 'main/HomeInfoArea' (in locale en) has been exausted: there are 50 instances currently being used and no more can be created. Try increasing the hard limit (symbol tapestry.page-pool.hard-limit) to allow additional instances to be created

Re: t5: edit a bean without beaneditform

2011-05-09 Thread Josh Canfield
You are persisting using flash. I think you're workflow goes like this: Your page renders you store new Person() in the session. When you post the form it reads and removes it from the session. When you render after the post it's no longer in the session and you get another new Person() in onPrepa

t5: edit a bean without beaneditform

2011-05-09 Thread Angelo C.
Hi, I got a bean Person with a field name, when submit, the name is always null, why? java class: public class EditPerson { @Persist("flash") @Property private Person person; Object onActivate() { if (person != null) System.out.println(person.getName());

Re: [ANN] JumpStart 5.2.1 released

2011-05-09 Thread Taha Hafeez
Thanks, I use it as a reference Btw, this link is not working http://tapestry5.ideascale.com/akira/ideafactory.do?discussionID=9482 regards Taha On Mon, May 9, 2011 at 7:24 PM, Stephan Windmüller < stephan.windmuel...@tu-dortmund.de> wrote: > On 09.05.2011 15:24, Geoff Callender wrote: > > > J

Re: [ANN] JumpStart 5.2.1 released

2011-05-09 Thread Stephan Windmüller
On 09.05.2011 15:24, Geoff Callender wrote: > JumpStart 5.2.1 is up and running. Thank you! JumpStart has always been a great help when working with Tapestry, especially for starters. > * Uses the latest Tomcat, 6.0.32. Still supports 5.5.27. What about Tomcat 7.0.12? - Stephan ---

[ANN] JumpStart 5.2.1 released

2011-05-09 Thread Geoff Callender
Hi all, JumpStart 5.2.1 is up and running. The big feature in this release is that it has been upgraded to the latest Tapestry release, 5.2.5. Very many thanks to Francois Facon for his great help on this. Here's what's new: * Uses the latest Tapestry, 5.2.5. * Uses the latest

Re: Using iframe to include a T5 page

2011-05-09 Thread Joost Schouten (ml)
adding target="_top" top your form will cause problems on form validation as also a failed submit will end up in _top. Sounds like you should return a block/page (http://localhost/A2/doneFormPageB/) that redirects the location of _top though javascript to http://localhost/A1/done/. Cheers, J

Re: Chenillekit Editor component doesn't work after upgrading from 5.1.0.5 to 5.1.0.8-SNAPSHOT

2011-05-09 Thread Joost Schouten (ml)
On 9/05/11 5:43 AM, Jeshurun Daniel wrote: Ok, I fiddled with this for two whole days, did a whole bunch of stuff, and couldn't figure it out. Finally after I had sent out this email, I was reading the 5.2 docs and had an idea when reading the section on securing assets from this page: http://t