我需要在GWT中设置文件上传的浏览按钮....我找到了通过此链接http://www.dreamincode.net/forums/topic/15621-styling-a-file-browse-button/的方法。但我无法在GWT中使用相同的功能。知道如何去做吗?。
我正在使用GWT 2.4.0
答案 0 :(得分:3)
我尝试了以下方法,它对我有用。
我隐藏了文件上传字段,并在屏幕上使用了触发框。触发框单击被委托回文件上传浏览按钮单击使用JSNI方法
private static native void fileClick (Element el) /*-{
el.click();
}*-/;
并使用fileupload.getfilename()并使用文件位置详细信息设置触发器文本框。
答案 1 :(得分:1)
此处已有正确的解决方案
File Upload Control and GWT Look and Feel
但我认为您可以尝试以下方法。这帮助我克服了这个错误。
http://www.quirksmode.org/dom/inputfile.html
或强>
http://www.kavoir.com/2009/02/styling-file-upload-select-input-control-input-typefile.html
答案 2 :(得分:0)