I ended up using workaround 2, which was the easiest to implement, namely
preventing keystrokes in the text field and requiring the user to click the
Browse button:

FileUploadField fuf = new FileUploadField(FIELD_ID);
fuf.add(new SimpleAttributeModifier("onkeydown",
"if(event.keyCode==8){return false;}return true;"));
fuf.add(new SimpleAttributeModifier("onbeforeeditfocus", "return false;"));

Julian

-- 
View this message in context: 
http://www.nabble.com/IE-XP-FileUpload-Problem-tp16630175p16690684.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to