我有表格和文件字段(上传字段)。提交后,我想在该字段中显示文件名和扩展名。
我尝试过类似的东西,但它不起作用:
{
xtype: 'filefield',
name: 'Announcement' + i,
msgTarget: 'side',
allowBlank: false,
anchor: '100%',
buttonText: 'Browse...',
listeners:
{
render: function()
{
if (this.up('app-main-view').response.Questions[i - 1])
{
this.setValue(this.up('app-main-view').response.SoundFileName);
}
}
}
}
对于其他字段(textfields,combobox等),this.setValue(this.up('app-main-view').response.SOMETHING);
可以正常工作。