<html><HEAD></HEAD>
<BODY >Maybe onClick: instead of callback: helps?<BR><BR>
<TABLE width="100%">
<TBODY>
<TR>
<TD width=5 bgColor=blue>&nbsp;</TD>
<TD>
<DIV>Hello</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. &nbsp;Could someone poke me with a clue stick? &nbsp;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>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:'male'.</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: 'female'.</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><BR></DIV>
<DIV>Cheers</DIV>
<DIV>Andy</DIV></TD></TR></TBODY></TABLE></BODY></html>