这是我在配置对象中的一个片段:
xtype: 'fieldset',
cls: 'loginFormText',
items:[
{
xtype: 'timepickerfield',
label: 'Start',
value: this.fromTime(),
name: 'fromTime'
},{
xtype: 'timepickerfield',
label: 'End',
value: this.toTime(),
name: 'toTime'
}
]
在视图的底部,我具有以下功能:
fromTime: function(){
var fromDate = new Date();
fromDate.setHours(12);
},
toTime: function(){
var toDate = new Date();
toDate.setHours(18);
}
但是我尝试用“this.fromTime()”和“this.toTime()”调用它们的方式不起作用,我该如何称呼它们?