0

我们面临一个奇怪的问题,即我们无法使用文件上传字段从“浏览”更改按钮名称。

我们非常需要这个特性来支持多种语言。我们使用 xtype:textfield 和输入类型为“文件”

请帮助我们解决这个问题。我们正在使用 EXTJS 3.4

xtype:'textfield'
input type : 'file'
4

2 回答 2

3

有一个很好的扩展可以用于此。它在 3.4 的示例中。

文件上传字段示例

FileUploadField.js fileuploadield.css

jsFiddle 示例

Ext.onReady(function () {


    new Ext.Viewport({


        layout: 'fit',
        items: [
            {
                xtype: 'form',
                items: [
                    {
                        xtype: 'textfield',
                        fieldLabel: 'Textfield with inputType=file',
                        inputType: 'file'
                    },
                    {
                        xtype: 'fileuploadfield',
                        width: 200,
                        emptyText: 'Select a file',
                        fieldLabel: 'FileUploadField UX',
                        name: 'blah-blah',
                        buttonText: 'Custom Text'
                    }
                ],

                title: 'Form'
            }
        ]
    });

});
于 2013-03-20T14:37:39.917 回答
0
<html>
<head>
</head>
<body>
<form>
<input type=text name=file style="width:60px"> 
<input type=file name=newfile style="display:none">
<input type=button onClick="newfile.click();file.value=newfile.value; " value="import from excel">
</form>
</body>
</html>
于 2014-01-09T04:44:44.530 回答