Ext.util.Format.date in Ext 4.0.2 uses a Date or String object (your case). This string is parsed using the built-in Date.parse () using the UTC time zone.
Try to parse it explicitly using Ext.Date.parse:
var dt = Ext.Date.parse("2012-01-13", "Ymd"); Ext.util.Format.date(dt, "mdY");
source share