Hi, there is a simple code for file selection to upload. I cannot select multiple files in Internet Explorer using UploadItem. It works OK in Firefox. I would like use then the more sophisticated use case "Background upload without the Smart GWT Server" in IE too. It works OK for multiple selection in FF. Could you please check it in IE?
Code:
import com.smartgwt.client.widgets.form.DynamicForm; import com.smartgwt.client.widgets.form.fields.UploadItem; import com.smartgwt.client.widgets.layout.VLayout; public class MyPanel extends VLayout { public MyPanel() { UploadItem uploadItem = new UploadItem("myitem", "Upload"); DynamicForm form = new DynamicForm(); form.setItems(uploadItem); addMember(form); } }
Comment