1

我意识到我所有的组合框都有这个。我希望它有一个默认值,所以我尝试了......

TimeField field = new TimeField();
field.setFormat(DateTimeFormat.getFormat("HH:mm"));
field.setRawValue("10:00");

但是当我打开该部分时,该值没有设置。它仍然是空白的。

4

1 回答 1

3

我找到了解决方案。我使用以下格式它的锅。

private TimeField fromTime = new TimeField();
    fromTime.setFormat(DateTimeFormat.getFormat("HH:mm"));
    fromTime.setIncrement(1);
    Time time = new Time();
    time.setText("00:00");
    fromTime.setValue(time);
    fromTime.setTriggerAction(TriggerAction.ALL);
    toolbar.add(fromTime);
于 2010-10-22T08:27:25.990 回答