我使用两个时间段。一个是开始时间,另一个是结束时间。当我在starttime中选择一个时间时,我将此值加载到endtime:
{
xtype: 'timefield',
flex: 1,
margins: '10',
maxHeight: 25,
maxWidth: 100,
fieldLabel: '',
labelAlign: 'top',
name: 'startTijd',
allowBlank: false,
altFormats: 'G:i',
format: 'G:i',
listeners: {
change: {
fn: me.onTimefieldChange,
scope: me
}
}
}
这是听众的功能
onTimefieldChange: function (field, newValue, oldValue, eOpts) {
Ext.getCmp('eindTijd').setValue(newValue);
}
但我想要的是,当我选择starttime = 14:00时,结束时间将自动增加它,在这种情况下,在14:15这个结束时间为一步。我试图将15添加到newValue,但这将为GMT添加15
答案 0 :(得分:2)
Ext为这种操作提供Ext.Date.add
。使用您的代码,就像:
onTimefieldChange: function (field, newValue, oldValue, eOpts) {
var convertedValue = Ext.isEmpty(newValue)
? null
: Ext.Date.add(newValue, Ext.Date.MINUTE, 15);
Ext.getCmp('eindTijd').setValue(convertedValue);
}