我的表格上有日期字段:
var intForm = new Ext.FormPanel({
width: 350,
autoHeight: true,
bodyStyle: 'padding: 10px 10px 10px 10px;',
labelWidth: 70,
defaults: {
anchor: '95%',
allowBlank: false,
msgTarget: 'side'
},items:[{
xtype:'datefield',
fieldLabel: 'Выберете дату',
name: 'intDate',
anchor:'80%',
maxValue: new Date(),
listeners:{
'change': function(this,newValue,oldValue){
alert('newValue');
}
}
}]
});
但是当我启动应用程序时出现错误:
SyntaxError: missing formal parameter
'change': function(this,newValue,oldValue){
当我像这样创建日期字段时,我不能使用侦听器,我要使用变量来创建日期字段吗?