toedter.com Board
The JCalendar and HTML sitemap community forum!
Please log in or register.
The date and time is now September 6, 2010, 12:56:56 PM
Home  Search  Help  Log in  Register  Members

New Post Post Reply
toedter.com Board :: NetObjects Fusion HTML site map :: Feature Requests :: change Date Format in JCalendar  ::
Salim
Newbie
Image

JCalendar is great!
Posts: 1
change Date Format in JCalendar (August 30, 2009, 07:51:15 AM) quote  
Hi every one
Good Day

How can I change Date Format in JCalendar to yyyy-mm-dd ?

Thanks
Salim


IP logged Status: logged off Profile 
Order of replies: first reply last :: first reply first
laynet
Newbie
Image

JCalendar is great!
Posts: 1
RE: change Date Format in JCalendar (January 25, 2010, 01:26:28 AM) quote  
Example of solution:
to change Date Format in JCalendar to yyyy-mm-dd


private void jCalendar1PropertyChange(java.beans.PropertyChangeEvent evt) {
jCalendar1.addPropertyChangeListener(new java.beans.PropertyChangeListener() {
public void propertyChange(java.beans.PropertyChangeEvent evt) {
jCalendar1PropertyChange(evt);
}
});
Date objFecha = this.jCalendar1.getDate();
String month;
month = String.valueOf(objFecha.getMonth()+1);
if (objFecha.getMonth()+1<10)
{
month = "0"+String.valueOf(objFecha.getMonth()+1);
}
String s = String.valueOf(objFecha.getYear()-100+2000)+"-"+month+"-"+String.valueOf(objFecha.getDate());
jComboBox4.removeAllItems();
this.jComboBox4.addItem(s);
//this.jFormattedTextField1.setText(s);

// TODO add your handling code here:

IP logged Status: logged off Profile 
joetraff
Newbie
Image

JCalendar is great!
Posts: 2
RE: change Date Format in JCalendar (July 18, 2010, 07:13:49 AM) quote  
It works fine.
Your help is much obliged.

IP logged Status: logged off Profile Send AIM 
New Post Post Reply

Software PBLang 4.67.16.a © 2002-2006 by Martin Senftleben & the PBLang-Team
Image