Re: [Stripes-users] Index Properties + Null Values

2011-03-15 Thread Adam Stokar
Thanks for the quick response Iwao. Seems like the binding is what I am talking about then. Is there an easy way to override the default behavior? On Tue, Mar 15, 2011 at 1:59 AM, Iwao AVE! haraw...@gmail.com wrote: Hi Adam, Try specifying the index of each textarea explicitly. Mon:

Re: [Stripes-users] Index Properties + Null Values

2011-03-15 Thread Poitras Christian
Maybe a better solution is to provide default values as empty/null strings in the action bean's property. So if your property look like private ListString messages; Try adding an initialisation method like @Before(stages=LifecycleStage.BindingAndValidation) public void populateDefaultMessages()

Re: [Stripes-users] Index Properties + Null Values

2011-03-15 Thread VANKEISBELCK Remi
Even more : if you know in advance that you have 7 props, then why using a list, and not 7 distinct properties ? Cheers Remi 2011/3/15 Poitras Christian christian.poit...@ircm.qc.ca Maybe a better solution is to provide default values as empty/null strings in the action bean's property. So