(SC_SNAPSHOT-2011-04-26/PowerEdition Deployment 2011-04-26)
Browser: Internet Explorer 8
Hello,
If I select a file in a FileItem in internet explorer (when deployed), the value is immediately cleaned (visually) in the little white input box that shows the path normally.
In other browsers it works.
Any idea how this is possible? I am using pretty standard code for my form:
Is this a bug, or am I doing something wrong?
My form is placed inside a VLayout, which is placed inside a VLayout, which is placed inside a Window. (Not sure if this makes a difference, but just stating this anyway)
Browser: Internet Explorer 8
Hello,
If I select a file in a FileItem in internet explorer (when deployed), the value is immediately cleaned (visually) in the little white input box that shows the path normally.
In other browsers it works.
Any idea how this is possible? I am using pretty standard code for my form:
Code:
DynamicForm uploadForm = new DynamicForm(); FileItem uploadItem = new FileItem("backgroundFilename"); HiddenItem idField = new HiddenItem("Flavour_id"); uploadForm.setDataSource(myDs); uploadForm.editRecord(record); uploadItem.setTitle("Background"); uploadForm.setFields(idField,uploadItem);
My form is placed inside a VLayout, which is placed inside a VLayout, which is placed inside a Window. (Not sure if this makes a difference, but just stating this anyway)
Comment