Re: stack values in converter

2009-02-04 Thread Andrei Ivanov
On Mon, Feb 2, 2009 at 4:18 PM, Musachy Barroso wrote: > This is a known problem on xwork 2.1.2: > > http://jira.opensymphony.com/browse/XW-670 > > it is fixed in xwork trunk > AFAIS, struts 2.0 uses xwork 2.0 How will it help me that it will be fixed in xwork 2.1? ---

Re: stack values in converter

2009-02-02 Thread Musachy Barroso
This is a known problem on xwork 2.1.2: http://jira.opensymphony.com/browse/XW-670 it is fixed in xwork trunk musachy On Mon, Feb 2, 2009 at 7:59 AM, Andrei Ivanov wrote: > Anybody? > > On Tue, Jan 20, 2009 at 10:30 AM, Andrei Ivanov > wrote: >> On Tue, Jan 20, 2009 at 5:08 AM, dusty wrote:

Re: stack values in converter

2009-02-02 Thread Andrei Ivanov
Anybody? On Tue, Jan 20, 2009 at 10:30 AM, Andrei Ivanov wrote: > On Tue, Jan 20, 2009 at 5:08 AM, dusty wrote: >> >> Sorry. I don't think I understand your problem. When you say the stack is >> being cleared are you seeing nulls in your converter for values that were >> previously populated o

Re: stack values in converter

2009-01-22 Thread Andrei Ivanov
ableStack = newStack instanceof >>>> ClearableValueStack;") >>>> >>>> What can I do to make it work again? >>>> >>>> Thank you >>>> >>> >

Re: stack values in converter

2009-01-20 Thread Andrei Ivanov
ck values (begining >>> with "boolean clearableStack = newStack instanceof >>> ClearableValueStack;") >>> >>> What can I do to make it work again? >>> >>> Thank you >>> >> >> Anyone? >> >> --------

Re: stack values in converter

2009-01-19 Thread dusty
> To unsubscribe, e-mail: user-unsubscr...@struts.apache.org > For additional commands, e-mail: user-h...@struts.apache.org > > > -- View this message in context: http://www.nabble.com/stack-values-in-converter-tp21518740p21556

Re: stack values in converter

2009-01-19 Thread Andrei Ivanov
On Sat, Jan 17, 2009 at 7:30 PM, Andrei Ivanov wrote: > Hello, > I have a date converter that does something like this: > > String value = values[0]; > Locale locale = (Locale) context.get(ActionContext.LOCALE); > DateFormat df = DateFormat.getDateInstance(DateFormat.SHORT, locale); > Date date =

stack values in converter

2009-01-17 Thread Andrei Ivanov
Hello, I have a date converter that does something like this: String value = values[0]; Locale locale = (Locale) context.get(ActionContext.LOCALE); DateFormat df = DateFormat.getDateInstance(DateFormat.SHORT, locale); Date date = df.parse(value); The locale is set in the context by the com.opensy