Took some time to look at the date field issue. The problem is that qx.util.format.Date uses different AM/PM markers when converting a Date object to a String and vice versa. The stringified date uses "AM" and "PM" but the parser looks for "am" and "pm".
As a quick workaround, you can set the corresponding constants before creating your DateFormat instance: qx.util.format.DateFormat.PM_MARKER = "PM"; qx.util.format.DateFormat.AM_MARKER = "AM"; Of course it's only necessary if you're using that kind of date format in your application. Regards, Daniel ------------------------------------------------------------------------------ This SF.net Dev2Dev email is sponsored by: Show off your parallel programming skills. Enter the Intel(R) Threading Challenge 2010. http://p.sf.net/sfu/intel-thread-sfd _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
