GWT DateBox格式

时间:2015-03-27 08:05:46

标签: java gwt

我想在GWT中将格式设置为DateBox。

所需格式为dd/MM/yyyy

我尝试使用:

DateTimeFormat dateFormat = DateTimeFormat.getFormat("dd/MM/yyyy");
dateBoxObj.setFormat(new DateBox.DefaultFormat(dateFormat));

任何帮助??

1 个答案:

答案 0 :(得分:0)

交叉检查您导入的DateTimeFormat ...使用此com.google.gwt.i18n.client.DateTimeFormat ...它看起来像上面的代码应该工作... 我也使用过这个DatetimeFormat ...就像这样

Date date = event.getValue(); //Date from Selection
String dateString = DateTimeFormat.getFormat("MM/dd/yyyy").format(date);
textbox.setValue(dateString); //this date is in form of "MM/dd/yyyy"