<div>Hello :)</div><div><br></div>For simplification, let&#39;s say I have two Components, Component1 and Component2, with the following methods:<div><br><div><div>Component1&gt;&gt;renderContentOn: html</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>html heading: &#39;Component1&#39;.</div>
<div><span class="Apple-tab-span" style="white-space:pre">        </span>html anchor</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>callback: [self call: Component2 new];</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>with: &#39;Call Component 2&#39;</div>
<div><br></div><div>Component2&gt;&gt;renderContentOn: html</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>html heading: &#39;Component2&#39;.</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>html anchor</div>
<div><span class="Apple-tab-span" style="white-space:pre">                </span>callback: [self answer.];</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>with: &#39;Answer&#39;.</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>html anchor</div>
<div><span class="Apple-tab-span" style="white-space:pre">                </span>url: &#39;#&#39;;</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>onClick: (html jQuery ajax callback: [self answer.]);</div><div>
<span class="Apple-tab-span" style="white-space:pre">                </span>with: &#39;Answer using AJAX&#39;</div><div><br></div><div>When I click on the Answer using AJAX link Component2 answers but oviously the page stays the same, even when I reload and does not reflect the new state of the application where Component2 has answered. How can I re-synchronize server side and client side after this situation occured such that the page reflects the new state, where Component2 has answered? </div>
<div><br></div><div>RD</div></div></div>