Hi, 
I am trying to create a pop-up window to display some feedback after a bulk 
upload. The pop-up window needs to be created using a submitLink not a 
BookmarkablePageLink, I have tried using a BookmarkablPageLink but you cannot 
not override the onClick() method, also it cannot be an ajax pop-up because I 
am using a file upload. The code would be something like this:

add(new SubmitLink("add"){     public void onSubmit() {           FileUpload 
upload = fileUploadField.getFileUpload();
           List feedback = myService.doSomethingWithUpload(upload);             
      if(feedback.size()> 0 )                  Create a popup window to display 
the feedback.           }});

Do you know how this can be achieved?
Thanks in advance.
_________________________________________________________________
Rediscover HotmailĀ®: Get e-mail storage that grows with you. 
http://windowslive.com/RediscoverHotmail?ocid=TXT_TAGLM_WL_HM_Rediscover_Storage1_042009

Reply via email to