5
使用DateBox小部件進行全日期值驗證的最佳方法是什麼?GWT DateBox驗證
像 「1.1」,但以下只是防止不完整輸入允許例如: 「333.333.333」
final DateTimeFormat format = DateTimeFormat.getFormat("dd.MM.yyyy");
dateBox.setFormat(new DefaultFormat(format));
任何建議?
Thx! 我擴展了DateBox.DefaultFormat並覆蓋了'parse()'方法來使用'parseStrict()'。 –