Re: [Stripes-users] problem in

2008-08-18 Thread Stripes-payal
Thanks for the reply... has one more problem... I am trying to upload multiple files through my jsp..using and in My action bean class I have public List newAttachments=null; public List getNewAttachments() { return newAttachments; } public void setNewAttach

[Stripes-users] Multiple File upload

2008-08-18 Thread Stripes-payal
I am trying to upload multiple files through my jsp..using and in My action bean class I have public List newAttachments=null; public List getNewAttachments() { return newAttachments; } public void setNewAttachment(List newAttachments) {

Re: [Stripes-users] Multiple File upload

2008-08-18 Thread Ben Gunter
You need something to iterate over when using . Either pass in an iterable object with or specify a number of iterations with . On Mon, Aug 18, 2008 at 12:30 PM, Stripes-payal <[EMAIL PROTECTED]> wrote: > > I am trying to upload multiple files through my jsp..using > > > > > > and in My actio

Re: [Stripes-users] Multiple File upload

2008-08-18 Thread Stripes-payal
thanks for the reply.. But when i specify count=20,it shows me brows button for 20 time ,where as i just want one browse button allowing multiple files to upload How can we do this... Thanks Again Ben Gunter-2 wrote: > > You need something to iterate over when using . Either pass in > an > it

Re: [Stripes-users] Multiple File upload

2008-08-18 Thread Ben Gunter
Unfortunately, it doesn't work that way. Each "file" input consists of a text box and browse button and accepts only one file. On Mon, Aug 18, 2008 at 12:41 PM, Stripes-payal <[EMAIL PROTECTED]> wrote: > > thanks for the reply.. > But when i specify count=20,it shows me brows button for 20 time ,

[Stripes-users] Stripes 1.5 released

2008-08-18 Thread Ben Gunter
It's official! Check the announcement at the Stripes site. http://www.stripesframework.org/display/stripes/2008/08/18/Stripes+1.5+Release+Available -- Ben Gunter - This SF.Net email is sponsored by the Moblin Your Move Devel

Re: [Stripes-users] Multiple File upload

2008-08-18 Thread Stripes-payal
thanks for the reply.. i specified it worked with the browse button... but when i submitted a form it agagin throws an error net.sourceforge.stripes.util.bean.EvaluationException: Could not write read-only property 'newAttachments' on bean of type com.welchallyn.intranet.actions.EventA

Re: [Stripes-users] Stripes 1.5 released

2008-08-18 Thread David G Friedman
Ben, Does the release automatically push out to maven repositories? Regards, David Ben Gunter wrote: > It's official! Check the announcement at the Stripes site. > > http://www.stripesframework.org/display/stripes/2008/08/18/Stripes+1.5+Release+Available

Re: [Stripes-users] Stripes 1.5 released

2008-08-18 Thread Tim Fennell
Automatically no. Have we started the process, yes ;) You can follow the ticket here if you're interested: http://jira.codehaus.org/browse/MAVENUPLOAD-2179 -t On Aug 18, 2008, at 1:01 PM, David G Friedman wrote: Ben, Does the release automatically push out to maven repositories? Re

Re: [Stripes-users] reusing validation annotations

2008-08-18 Thread Chris Herron
One of the unfortunate things about JSR-303 as it currently stands is that it doesn't allow you to define validation rules for nested properties. Instead you're supposed to define validation "groups" within your domain objects. This means your domain layer has to know about every context in

Re: [Stripes-users] Stripes 1.5 released

2008-08-18 Thread Alan Burlison
Ben Gunter wrote: > It's official! Check the announcement at the Stripes site. > > http://www.stripesframework.org/display/stripes/2008/08/18/Stripes+1.5+Release+Available Huzzah! Many thanks and congratulations to all the people involved, I appreciate the huge amount of work that has gone int

Re: [Stripes-users] Stripes 1.5 released

2008-08-18 Thread Oscar Westra van Holthe - Kind
Alan Burlison wrote: > Ben Gunter wrote: > > > It's official! Check the announcement at the Stripes site. > > > > http://www.stripesframework.org/display/stripes/2008/08/18/Stripes+1.5+Release+Available > > Huzzah! > > Many thanks and congratulations to all the people involved, I appreciate >

Re: [Stripes-users] Stripes 1.5 released

2008-08-18 Thread Morten Matras
Congratulations to everyone that has put time and effort into the release. Respect Morten Matras 2008/8/18 Oscar Westra van Holthe - Kind <[EMAIL PROTECTED]> > Alan Burlison wrote: > > Ben Gunter wrote: > > > > > It's official! Check the announcement at the Stripes site. > > > > > > > http://ww

Re: [Stripes-users] problem in

2008-08-18 Thread Levi Hoogenberg
If varStatus="loop" is the only attribute you're passing to c:forEach, then you're missing some attributes: either begin/end or items. The 'var' attribute is optional, but can be handy. On Mon, Aug 18, 2008 at 5:56 PM, Stripes-payal <[EMAIL PROTECTED]> wrote: > > Thanks for the reply... > h

Re: [Stripes-users] problem in

2008-08-18 Thread Levi Hoogenberg
Continued in a different thread I see... On Mon, Aug 18, 2008 at 8:18 PM, Levi Hoogenberg <[EMAIL PROTECTED]>wrote: > If > > varStatus="loop" > > is the only attribute you're passing to c:forEach, then you're missing some > attributes: either begin/end or items. The 'var' attribute is optiona

Re: [Stripes-users] Stripes 1.5 released

2008-08-18 Thread Levi Hoogenberg
Great! It will be hard for 1.6 to trump this release in terms of overall improvement. Congratulations, Levi On Mon, Aug 18, 2008 at 6:45 PM, Ben Gunter <[EMAIL PROTECTED]> wrote: > It's official! Check the announcement at the Stripes site. > > > http://www.stripesframework.org/display/stripes/

Re: [Stripes-users] Stripes 1.5 released

2008-08-18 Thread Tim Fennell
Just to let everyone know, Ben submitted the release announcement to the serverside and it's been published here: http://www.theserverside.com/news/thread.tss?thread_id=50391 -t On Aug 18, 2008, at 2:25 PM, Levi Hoogenberg wrote: Great! It will be hard for 1.6 to trump this release in

[Stripes-users] maps and @ValidateNestedProperties

2008-08-18 Thread Levi Hoogenberg
Hi, today I've been binding into a Map for the first time using Stripes and I must say it was much less painful than I feared :) Now I'm trying to validate the map's contents by using something like: @ValidateNestedProperties({ @Validate(field = "PAGE_SIZE", required = true) })

Re: [Stripes-users] Multiple File upload

2008-08-18 Thread Matthew Altman
Does it have to do with the fact that your setter method is setNewAttachment instead of setNewAttachments (plural) ? On Mon, Aug 18, 2008 at 10:47 AM, Stripes-payal <[EMAIL PROTECTED]> wrote: > > thanks for the reply.. > i specified > > > > > it worked with the browse button... > but when i

Re: [Stripes-users] maps and @ValidateNestedProperties

2008-08-18 Thread Levi Hoogenberg
Followup: Stripes *does* process the validation annotations, but adds validation errors under the key preferences.PAGE_SIZE instead of the expected preferences[PAGE_SIZE]. On Mon, Aug 18, 2008 at 10:38 PM, Levi Hoogenberg <[EMAIL PROTECTED]>wrote: > Hi, > > today I've been binding into a Map for