Hello<div><br></div><div>I am sure I am missing something very obvious - hence the posting on the beginners&#39; list.</div><div><br></div><div>I am working through the seaside book, and everything has been fine, until I tried to replace my select item with a radio group. The form renders correctly, but never fires the callbacks.  Could someone poke me with a clue stick?  By the way, the self halts are in there because when I put the halt commands in the beMale beFemale methods, they never fired either. So I was working my way back up the chain.</div>
<div><br></div><div>The strange thing is that the other text input boxes (removed in this snippet) updated the model correctly.</div><div><br></div><div><div>renderContentOn:html</div><div>| group |</div><div>html form:</div>
<div><span class="Apple-tab-span" style="white-space:pre">        </span>[</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>group := html radioGroup.</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>html text:&#39;male&#39;.</div>
<div><span class="Apple-tab-span" style="white-space:pre">                </span>html radioButton</div><div><span class="Apple-tab-span" style="white-space:pre">                        </span>group: group;</div><div><span class="Apple-tab-span" style="white-space:pre">                        </span>selected: self contact isMale;</div>
<div><span class="Apple-tab-span" style="white-space:pre">                        </span>callback: [self halt].</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>html text: &#39;female&#39;.</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>html radioButton</div>
<div><span class="Apple-tab-span" style="white-space:pre">                        </span>group: group;</div><div><span class="Apple-tab-span" style="white-space:pre">                        </span>selected: self contact isFemale;</div><div><span class="Apple-tab-span" style="white-space:pre">                        </span>callback: [self halt].</div>
<div><span class="Apple-tab-span" style="white-space:pre">                </span>html submitButton on: #save of:self.</div><div>]</div></div><div><br></div><div>Cheers</div><div>Andy</div>