我想在更改功能运行时获取文件大小。我尝试了更多,但没有任何效果。我该怎么做谢谢
{
xtype: 'filefield',
name: 'upfile[]',
buttonConfig: {
text: 'add'
},
listeners: {
'change': function(f, value){
alert(f.size); // not filesize
}
}
}