我想要在收聽文件更改時收聽。但它不工作在extjs的Filefield上收聽更改
{
xtype: 'filefield',
id: 'form-file',
fieldLabel: 'Photo',
name: 'photo-path',
buttonText: '',
buttonConfig: {
iconCls: 'upload-icon'
},
listeners: {
'change': function(this, value){
alert('change');
}
}
}
我發現溶液:函數變化必須是:變化:函數(f,new_val){ 警報( new_val); } – DeLe
如果你解決了你自己的問題,請把它作爲答案(並接受你自己的答案) – tacaswell
@tcaswell好吧謝謝你:)我只是發佈我的答案:) – DeLe