GWT的dateField控件取不到值

调用dateField.setValue方法,控件就在页面上消失了
getValue获得的值是null
后检查代码,发现错误代码如下:
jpCutoffDatePanel = new DateField("Cutoff Date", "cutoffDate", 100);
Date lDtCutoffDate = this.getCutoffDate();
jpCutoffDatePanel.setValue(lDtCutoffDate);
inputPanel.addToRow(jpCutoffDatePanel, 300);
formPanel.add(inputPanel);
this.add(inputPanel);
this.add(formPanel);

删除最后第2行后程序正常

你可能感兴趣的:(Field)