return dateBox;
}
/** Create a DateBox using the standard GwtDateUtils timestamp format. */
public static DateBox createDateBoxForTimestamp() {
DateBox dateBox = new DateBox();
dateBox.setFormat(new DateBox.DefaultFormat(GwtDateUtils.getTimestampFormat()));
return dateBox;
}