我使用两个时间域。一个是开始时间,另一个是结束时间。当我在开始时间选择一个时间时,我将此值加载到结束时间:
{
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);
}
但我想要的是,当我选择开始时间 = 14:00 时,结束时间会自动增加一步,结束时间在这种情况下为 14:15。我尝试将 15 添加到 newValue 但这会将 15 添加到 GMT