Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个日期字段,用户可以在其中以特定日期格式从日期选择器中选择日期。在视图中,我正在使用这个片段,它默认显示在日期选择器中选择的当前日期。
this.dateFieldName.setFormat(new DateBox.DefaultFormat(DateTimeFormat .getFormat("dd-MM-yyyy")));
我如何在 gwt 中修改上述代码,以便当用户打开日期选择器时,选择的默认日期应该是当前日期的 2 个月。
您可以将 2 个月添加到 java util date 并将其设置为 dateField。
Date currentDate = new Date(); CalendarUtil.addMonthsToDate( currentDate, 2 ); dateFieldName.setValue( currentDate );
希望这会有所帮助