Works great, thank you!<div>I have to learn so much more, there is still so much that I haven&#39;t fully groked, sigh. ^^</div><div><br></div><div>RD</div><div><br><div class="gmail_quote">On Fri, Aug 21, 2009 at 9:57 PM, Lukas Renggli <span dir="ltr">&lt;<a href="mailto:renggli@gmail.com">renggli@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div class="im">&gt; This works – but it loads the entire page into the iframe, again. I would<br>
&gt; rather just load an html stub containing a javascript which indicates if the<br>
&gt; upload was successful or not and executes in the context of the original<br>
&gt; html. I tried to return a response during the setting of my component&#39;s<br>
&gt; image instance-variable but this does not work.<br>
&gt; Has anybody an Idea?<br>
<br>
</div>You need to start a new render loop (to avoid that the parent page is<br>
displayed within the frame) and display some component. Try to add the<br>
following code at the end of the method #image:<br>
<br>
  ...<br>
  WARenderLoop new<br>
      show: (WAComponent new<br>
           addMessage: &#39;File successfully uploaded&#39;;<br>
           yourself)<br>
      withToolFrame: false<br>
<br>
Replace the expression within brackets with your own component that<br>
displays the confirmation.<br>
<br>
Cheers,<br>
Lukas<br>
<font color="#888888"><br>
--<br>
Lukas Renggli<br>
<a href="http://www.lukas-renggli.ch" target="_blank">http://www.lukas-renggli.ch</a><br>
_______________________________________________<br>
seaside mailing list<br>
<a href="mailto:seaside@lists.squeakfoundation.org">seaside@lists.squeakfoundation.org</a><br>
<a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
</font></blockquote></div><br></div>