Hello,<br><br>I&#39;m using Seaside 2.9, Squeak and the new Seaside JQuery support. I&#39;m creating a table where each row has a checkbox, just like GMail I want to provide a &quot;Select all&quot; and a &#39;Select none&quot; link. <br>
<br>My idea is to use JQuery to select or unselect all checkboxes:<br><br>&nbsp;&nbsp;&nbsp; html anchor<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; onClick: ((html jQuery expression: &#39;:checkbox&#39;) value: &#39;checked&#39;);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; with: &#39;All, &#39;.<br>
<br>The problem is that this adds the value=&quot;check&quot; attribute to all checkbox elements but I need the checked=&quot;checked&quot; attribute!<br><br>I also tried:<br><br>&nbsp;&nbsp;&nbsp; html anchor<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; onClick: ((html jQuery expression: &#39;:checkbox&#39;) do: [ :each | each click ]);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; with: &#39;All, &#39;.<br><br>But this doesn&#39;t work because the JQueryInstance object has no click method.<br><br>Can anyone help me out?<br><br>Jan.<br>