ExtJs 服务器端返回时间格式Y-m-d H:i:s Date控件不能显示的问题

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);
            }
        });

相关推荐