我正在尝试使用ace:fileEntry组件将图像上传到我的数据库中,但是现在,我想更改按钮“ Browse”的名称(在我的案例中为“ Seleccionar archivo”),但我不知道该名称的存储位置。

                    <ace:fileEntry id="ImageFileEntry"
                                    fileEntryListener="#{usuarioBean.sampleListener}"
                                    useSessionSubdir="true">

                    </ace:fileEntry>
                    <h:commandButton id="submit" value="subir"></h:commandButton>


我附上了截图

http://i.stack.imgur.com/8b817.png

谢谢

最佳答案

ace:fileEntry将呈现一个<input type="file">元素,此按钮上的文本始终由您的浏览器/浏览器的语言定义。无法更改它,请查看此帖子以获取更多信息和一些变通方法:Change default text in input type="file"?

关于java - 在ace:FileEntry中更改浏览的默认按钮名称,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11349420/

10-13 04:22