All,<div><br></div><div>I&#39;m using JQueryMobile (ConfigurationOfJQueryMobile-NickAger.25) on Seaside 3.0.6 on Pharo1.3 #13302.</div><div><br></div><div>A call, answer followed by browser refresh sequence results in the user being taken back to the &quot;called&quot; component rather than the &quot;caller&quot;.</div>


<div>The same components when registered through WAAdmin rather than JQMAdmin work as expected.</div><div><br></div><div>Any chance someone could shed some light on this?</div><div><br></div><div>As far as I can tell, it could be getting the wrong WAActionPhaseContinuation or somehow the WASnapshot retains the called WADelegate decoration (even though, this decoration appeared to be removed correctly from the render continuation post answer !?).</div>


<div><br></div><div>Well, any help would be appreciated.</div><div><br></div><div>Yuet</div><div>-----------------------------------------------------------------------------------------------</div><div><br></div><div><b>Caller Component</b></div>
<div><div><br></div><div>WAComponent subclass: #AATestMainComponent</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>instanceVariableNames: &#39;testValue&#39;</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>classVariableNames: &#39;&#39;</div>
<div><span class="Apple-tab-span" style="white-space:pre">        </span>poolDictionaries: &#39;&#39;</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>category: &#39;AATest&#39;</div></div><div><br></div><div>
<br></div><div><div>renderContentOn: html</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>html </div><div><span class="Apple-tab-span" style="white-space:pre">                </span>anchor</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>callback: [</div>
<div><span class="Apple-tab-span" style="white-space:pre">                        </span>testValue := self call: AATestGetValueComponent new</div><div><span class="Apple-tab-span" style="white-space:pre">                        </span>];</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>with:  &#39;(1) Click here to set the Test Value&#39;.<span class="Apple-tab-span" style="white-space:pre">        </span></div>
<div><span class="Apple-tab-span" style="white-space:pre">        </span>html</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>break;</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>text: &#39; (2) The Test Value is: &#39;,  testValue greaseString.</div>
<div><span class="Apple-tab-span" style="white-space:pre">        </span>html</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>break;</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>text: &#39;(3) Now press the REFRESH button on the browser&#39;.</div>
</div><div><br></div><div><br></div><div><b>Called component</b></div><div><br></div><div><div>WAComponent subclass: #AATestGetValueComponent</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>instanceVariableNames: &#39;testValue&#39;</div>
<div><span class="Apple-tab-span" style="white-space:pre">        </span>classVariableNames: &#39;&#39;</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>poolDictionaries: &#39;&#39;</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>category: &#39;AATest&#39;</div>
</div><div><br></div><div><br></div><div><div>renderContentOn: html</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>html form</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>with: [</div>
<div><span class="Apple-tab-span" style="white-space:pre">                        </span>html label</div><div><span class="Apple-tab-span" style="white-space:pre">                                </span>for: html nextId;</div><div><span class="Apple-tab-span" style="white-space:pre">                                </span>with: &#39;Test Value&#39;.</div>
<div><span class="Apple-tab-span" style="white-space:pre">                        </span>html textInput </div><div><span class="Apple-tab-span" style="white-space:pre">                                </span>on: #testValue of: self;</div><div><span class="Apple-tab-span" style="white-space:pre">                                </span>id: html lastId.</div>
<div><span class="Apple-tab-span" style="white-space:pre">                        </span>html button</div><div><span class="Apple-tab-span" style="white-space:pre">                                </span>callback: [ self answer: testValue ];</div><div><span class="Apple-tab-span" style="white-space:pre">                                </span>with: &#39;Accept&#39; ]</div>
</div><div><br></div>