"=10="() 在 Sencha 中
Ext.Date.format() in Sencha
我想要日期格式像 2017-04-20 00:00:00
目前我的密码是
this.ToDatePicker = Ext.create('Ext.form.field.Text', {
xtype: 'textfield',
name: 'name',
labelAlign: 'top',
fieldLabel: 'Date Time',
value: Ext.Date.format(new Date(), "d-m-Y h:iA"),
listeners: {
scope: this,
afterrender: function (c) {
c.getEl().on('click', function (e) {
console.log(e.target)
NewCssCal_DisableAfterToday(Ext.get(e.target).dom.id, 'ddmmyyyy', 'dropdown', true, 12)
});
}
}
});
需要更新Ext.Date.format(new Date(), "d-m-Y h:iA")
根据需要获取该日期格式。你有什么想法吗?
根据Ext.Date
的文档,您可以使用:
Ext.Date.format(new Date(), "Y-m-d h:i:s")
我想要日期格式像 2017-04-20 00:00:00
目前我的密码是
this.ToDatePicker = Ext.create('Ext.form.field.Text', {
xtype: 'textfield',
name: 'name',
labelAlign: 'top',
fieldLabel: 'Date Time',
value: Ext.Date.format(new Date(), "d-m-Y h:iA"),
listeners: {
scope: this,
afterrender: function (c) {
c.getEl().on('click', function (e) {
console.log(e.target)
NewCssCal_DisableAfterToday(Ext.get(e.target).dom.id, 'ddmmyyyy', 'dropdown', true, 12)
});
}
}
});
需要更新Ext.Date.format(new Date(), "d-m-Y h:iA")
根据需要获取该日期格式。你有什么想法吗?
根据Ext.Date
的文档,您可以使用:
Ext.Date.format(new Date(), "Y-m-d h:i:s")