MyEclipse Forums
Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Author Message
giann_mga
Post subject: date format  PostPosted: Jul 13, 2011 - 03:47 PM
Registered Member
Registered Member


Joined: May 27, 2011
Posts: 9

How can i change input date format to 'dd/mm/yyyy' in jsp pages?
 
 View user's profile Send private message  
Reply with quote Back to top
support-joy
Post subject:   PostPosted: Jul 13, 2011 - 04:49 PM
Registered Member
Registered Member


Joined: Feb 03, 2009
Posts: 3442

giann_mga,

Try the following -

DateFormat dateFormat= new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
Date date= new Date();
String dateString= dateFormat.format(date);

_________________
Joy
MyEclipse Support
 
 View user's profile Send private message  
Reply with quote Back to top
giann_mga
Post subject: date format  PostPosted: Jul 13, 2011 - 07:30 PM
Registered Member
Registered Member


Joined: May 27, 2011
Posts: 9

Where can i put that sequence? I have the instructions below in my jsp page:

<input id="associado_datnas" name="datnas" type="text" value="<fmt:formatDate value="${associado.datnas.time}" pattern="yyyy-MM-dd"/>" dojoType="dijit.form.DateTextBox" constraints="{datePattern:'<fmt:message key="date.format"/>'}" trim="true" promptMessage="<fmt:message key="date.format" />" invalidMessage="<fmt:message key="date.format.invalid" /> <fmt:message key="date.format" />." style="width:300px;" />
 
 View user's profile Send private message  
Reply with quote Back to top
support-joy
Post subject:   PostPosted: Jul 14, 2011 - 10:34 AM
Registered Member
Registered Member


Joined: Feb 03, 2009
Posts: 3442

giann_mga,

Quote:
<fmt:formatDate value="${associado.datnas.time}" pattern="yyyy-MM-dd"/>"

Change the pattern to "dd/MM/yyyy"

_________________
Joy
MyEclipse Support
 
 View user's profile Send private message  
Reply with quote Back to top
giann_mga
Post subject: date format  PostPosted: Jul 15, 2011 - 03:11 AM
Registered Member
Registered Member


Joined: May 27, 2011
Posts: 9

It doesn't works. When i put pattern="dd/MM/yyyy" the field datnas doesn't appears in jsp page.
 
 View user's profile Send private message  
Reply with quote Back to top
support-joy
Post subject:   PostPosted: Jul 15, 2011 - 10:59 AM
Registered Member
Registered Member


Joined: Feb 03, 2009
Posts: 3442

giann_mga,

I do not have a visual on your project / jsp. Could you send me the whole code. One thing of interest is
Quote:

<input id="associado_datnas" name="datnas" type="text" value="<fmt:formatDate value="${associado.datnas.time}" pattern="yyyy-MM-dd"/>" dojoType="dijit.form.DateTextBox" constraints="{datePattern:'<fmt:message key="date.format"/>'}" trim="true" promptMessage="<fmt:message key="date.format" />" invalidMessage="<fmt:message key="date.format.invalid" /> <fmt:message key="date.format" />." style="width:300px;" />

Before you change the format of the date, could you confirm if you are able to see the date with below syntax
<fmt:formatDate value="${associado.datnas.time}" />"
If the above does not show date, try
<fmt:formatDate value="${associado_datnas.time}" />", since the id you have mentioned is
"associado_datnas", I believe you are facing syntax issue here.

_________________
Joy
MyEclipse Support
 
 View user's profile Send private message  
Reply with quote Back to top
giann_mga
Post subject: date format  PostPosted: Jul 15, 2011 - 01:38 PM
Registered Member
Registered Member


Joined: May 27, 2011
Posts: 9

I´m from Brazil, my date format is 'dd/mm/yyyy'. The question is: how can i change my regional settings for all projects to this date format?
 
 View user's profile Send private message  
Reply with quote Back to top
support-joy
Post subject:   PostPosted: Jul 18, 2011 - 04:24 PM
Registered Member
Registered Member


Joined: Feb 03, 2009
Posts: 3442

giann_mga,

What are you trying to achieve? Please refer http://support.microsoft.com/kb/307938 - how to change the regional settings in windows XP.

_________________
Joy
MyEclipse Support
 
 View user's profile Send private message  
Reply with quote Back to top
Display posts from previous:     
Jump to:  
All times are GMT - 6 Hours
Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Powered by PNphpBB2 © 2003-2004 The PNphpBB Group
Credits