I am trying to get bindFromRequest() to work with a request that includes a Date object. If I send the this type of date string,
Wed, 14 Nov 2012 22:00:00 GMT, to an action I always get a validation error. My form class looks like this:
public class foo {
@Formats.DateTime(pattern="ddd, dd MMM yyyy HH':'mm':'ss 'GMT'")
public Date end;
}
Any ideas why this isn't working?
Niklas