Re: Datetimepicker simple thing doesn't work java.text.ParseException: Unparseable date:

2008-02-04 Thread Serge Bornow
Hello Jeromy, I do have : s:head theme=simple / Also, i use Netbeans to generate respective get/set method so they are JavaBean std compliant. The issue for me unfortunately is getting the value back , it seems to lose it. :( Thanks for feedback though. Serge Jeromy Evans wrote: Hi

Re: Datetimepicker simple thing doesn't work java.text.ParseException: Unparseable date:

2008-02-04 Thread Laurie Harper
Doesn't that need to be theme=ajax? Serge Bornow wrote: Hello Jeromy, I do have : s:head theme=simple / Also, i use Netbeans to generate respective get/set method so they are JavaBean std compliant. The issue for me unfortunately is getting the value back , it seems to lose it. :(

Re: Datetimepicker simple thing doesn't work java.text.ParseException: Unparseable date:

2008-02-04 Thread Jeromy Evans
Here is an example where I use it successfully: s:datetimepicker name=incomingAnswer displayFormat=d dayWidth=wide formatLength=full type=date value=%{defaultAnswerDate} startDate=%{tomorrowAsRFC3339} required=true/

Datetimepicker simple thing doesn't work java.text.ParseException: Unparseable date:

2008-02-03 Thread Serge Bornow
Hi All, I:'ve been battling this for many hours. I hope someone can help. Using JDK 1.5, Struts 2.0.11 My property: shoot_date of type Date has get and set and on execute() set's the default date to today's date setShoot_Date(new Date); on the form: s:datetimepicker name=shoot_date

Re: Datetimepicker simple thing doesn't work java.text.ParseException: Unparseable date:

2008-02-03 Thread Jeromy Evans
Hi Serge, You'll find many emails in this forum relating to DatePicker problems. Some of the solutions are here: http://cwiki.apache.org/S2WIKI/vault.html In this case though, is it possible you've forgotten the s:head tag at the top of the page? Serge Bornow wrote: Hi All, I:'ve been

Re: Datetimepicker simple thing doesn't work java.text.ParseException: Unparseable date:

2008-02-03 Thread Dave Newton
I'm not sure what the JavaBean convention would be for a property with an underscore. Have you tried it as shootDate (with corresponding getShootDate/setShootDate methods)? Dave --- Serge Bornow [EMAIL PROTECTED] wrote: My property: shoot_date of type Date has get and set and on execute()