thanks a lot for the help and the links! I checked them all out, the second one (upload panel) was too complicated for me atm. Maybe I'l come back to it when I'l have more experience with wicket.
I liked the timed ajax behaviour example, but couldn't figure out exactly how it works so i could use it in my project. ??how does the behaviour know how to update the clock?? I currently solved this problem by "filtering" the input from the uploaded file and creating a correct object model (Set<String>) out of it, then setting the modelObject of the textarea to be this filtered one. I also didn't understand what you meant by simply using reflection to put the content of the file into the textarea, did you mean simply using setModelObject( (Set<String>) uploadedContent) ? thanks again for all the help so far On Wed, Sep 16, 2009 at 11:32 PM, Martin Makundi < martin.maku...@koodaripalvelut.com> wrote: > 1. You know how to upload file? > http://www.wicket-library.com/wicket-examples/upload/single > -> or ajax upload > > http://blog.demay-fr.net/index.php/2007/12/07/93-simulate-ajax-file-upload-with-wicket > > 2. Just put the file contents into textarea with jafa reflection. > > 3. AJax update the textarea: > http://www.wicket-library.com/wicket-examples/ajax/clock.2 > -> This is timed update..but similarly just add the textarea into ajax > target. > > ** > Martin >