gpt4 book ai didi

文本字段中的日期格式

转载 作者:行者123 更新时间:2023-12-04 05:12:09 25 4
gpt4 key购买 nike

我有一个文本字段:

xtype: "fieldset",
items:[
{
xtype: "textfield",
name: "dateScanned",
label: "Datum",
disabled: true,
tpl: "{dateScanned:date('d/m/Y H:i')}" // <--- this dosn't work
}
]

我的店铺是:
fields: [
{ name: 'dateScanned', type: 'date', dateFormat: 'c' }
]

为什么标记的点不起作用?
我怎么知道日期是格式化的?

最佳答案

/*Override to allow textfields to format dates*/
Ext.override(Ext.field.Text, {
setValue: function (value) {
if (this.config.dateFormat && value) {
if (Ext.isDate(value)) {
value = Ext.Date.format(value, this.config.dateFormat);
}
else {
var d = new Date(value);
value = Ext.Date.format(d, this.config.dateFormat);
}
}
this.callSuper(arguments);
}
});

关于文本字段中的日期格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14771977/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com