i have updated to<br>Seaside2.8a1-mu.540<br>Scriptaculous-mb.239<br><br>and now the following evaluator do not work anymore:<br><br>renderProductListOn: html<br>&nbsp;&nbsp;&nbsp; html multiSelect <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; id: &#39;productList&#39;;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; list: self sampleProducts;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; onChange: ( html evaluator<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; triggerFormElement: &#39;formId&#39;;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; callback: [: script | self halt. self updateInputsForSelectedProductOn: script ]<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; );<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; callback: [: s | list := s ];&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; on: #list<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; of: self.<br><br>the callback with the halt is never evaluated when I click over the items in the list<br>
<br>==========================================================<br>renderContentOn: html <br><br>&nbsp;&nbsp;&nbsp; html form<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; id: &#39;formId&#39;;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; with: [ self renderProductListOn: html.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; self renderInputsOn: html ]<br>
<br>==========================================================<br> renderInputsOn: html <br><br>(html div)<br>&nbsp; &nbsp;&nbsp;&nbsp; id: &#39;nameId&#39;;<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; with: [ html textInput on: #productName of: self ].<br><br>(html div)<br>
&nbsp; &nbsp;&nbsp;&nbsp; id: &#39;priceId&#39;;<br>&nbsp; &nbsp;&nbsp;&nbsp; with: [html textInput on: #productPrice of: self ].<br><br><br>==========================================================<br><br>what i&#39;m doing wrong?<br><br>