Ext.override(Ext.form.field.Date, {
//服务器端返回的时间格式,与服务器端返回格式一致即可正确显示
remoteFormat: "Y-m-d H:i:s",
setValue: function (val) {
if (val && typeof (val) == "string") {
val = Ext.Date.parse(val, this.remoteFormat, false);
}
this.callParent(arguments);
}
});