我想在GWT中将格式设置为DateBox。
所需格式为dd/MM/yyyy
。
我尝试使用:
DateTimeFormat dateFormat = DateTimeFormat.getFormat("dd/MM/yyyy");
dateBoxObj.setFormat(new DateBox.DefaultFormat(dateFormat));
任何帮助??
答案 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"