<div dir="ltr">Hi!<br>&gt; (html request callback: [ &quot;some callback&quot; ]) asFunctionThanks...<br>&gt; Is a callback created this way supposed to rerender the current<br>&gt; page?<br><br>NO!<br><div class="gmail_quote">
<div>&nbsp;</div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I tried this:<br>
<br>
html anchor onClick: (html javascript add: (html request callback: [self<br>
addEntry: &#39;Test&#39;])); with: &#39;myLink&#39;.<br>
</blockquote><div><br><br>You need an id for your html element, and you need a rendering method for the element content which should be updated!<br>Then something like this should work!<br><br>html anchor onClick: (html updater id: idOfDOMElement;<br>
&nbsp;&nbsp;&nbsp; callback: [:renderer | self addEntry: &#39;Test&#39;.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; self renderElementOn: renderer] ) <br><br>br<br>Gerhard<br></div></div><br></div>