1

I realized I have this with all combo box. I want it to have a default value so I tried...

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

But when I open the section, the value does not get set. It is still blank.

Andrew Brēza
  • 7,705
  • 3
  • 34
  • 40
lakshmi
  • 4,539
  • 17
  • 47
  • 55

1 Answers1

3

I m found the solution. I used following format its woks.

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);
lakshmi
  • 4,539
  • 17
  • 47
  • 55