timefield

Django Forms: TimeField Validation

I feel like I'm missing something obvious here. I have a Django form with a TimeField on it. I want to be able to allow times like "10:30AM", but I cannot get it to accept that input format or to use the "%P" format (which has a note attached saying it's a "Proprietary extension", but doesn't say where it comes from). Here's the gist of ...

How am i suppose to set a time as a default value in gxt?

I realized I have this with all combo box. I want it to have a default value so I did 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. ...