Hello list, <br>I have a simple seaside SUComponent subclass called ForkComponent:<br><br>ForkComponent class&gt;&gt; canBeRoot <br><div style="margin-left: 40px;">^true.<br></div><br>ForkComponent &gt;&gt; renderContentOn:html
<br><div style="margin-left: 40px;">(html button) <br>text: &#39;test fork&#39;; <br>onClick: (html
evaluator callback: <br><div style="margin-left: 40px;">[:script |<br></div><div style="margin-left: 40px;"><div style="margin-left: 40px;">&nbsp;self session. &quot; the session is NOT NIL here&quot; <br>[self session &quot;The session IS NIL here!!&quot;] fork
<br></div>])<br></div></div><br>When the callback is processed, I can access the session by sending #session to self (the component). The problem I have is that the session is always nil within the forked block.<br><br>Is this behavior correct?
<br>should the session be nil inside a forked block? <br>if so, why?<br><br>regards, <br>Leandro<br><br>