0

我使用两个时间域。一个是开始时间,另一个是结束时间。当我在开始时间选择一个时间时,我将此值加载到结束时间:

{
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

4

1 回答 1

2

Ext provides the Ext.Date.add for this kind of manipulations. With your code, that would be something like:

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);
}
于 2013-11-14T08:29:59.767 回答