Re: [Wicket-user] Registering dynamically added controls

2005-08-29 Thread Phil Kulak
public void onSubmit() { MapString, FileItem files = ((MultipartWebRequest) getRequest()).getFiles(); // do something with the files... } Badda bing. :) On 8/29/05, Scott Sauyet [EMAIL PROTECTED] wrote: Sorry, I'm still missing some of the basics here, so this may be a dumb question.

Re: [Wicket-user] Registering dynamically added controls

2005-08-29 Thread Scott Sauyet
Phil Kulak wrote: public void onSubmit() { MapString, FileItem files = ((MultipartWebRequest) getRequest()).getFiles(); // do something with the files... } Badda bing. :) Wow, that's easy enough. I'm quite impressed with Wicket so far. The String is the name attribute? Thanks,