Ext JS - 在filefield中显示文件名

时间:2018-06-07 11:44:10

标签: javascript extjs

我有表格和文件字段(上传字段)。提交后,我想在该字段中显示文件名和扩展名。

我尝试过类似的东西,但它不起作用:

{
    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);可以正常工作。

0 个答案:

没有答案