[Newbies] Is there a reason why this RadioButton group doesn't ever call the callback?

Andy Burnett andy.burnett at knowinnovation.com
Tue Apr 27 20:20:13 UTC 2010


Hello

I am sure I am missing something very obvious - hence the posting on the
beginners' list.

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.

The strange thing is that the other text input boxes (removed in this
snippet) updated the model correctly.

renderContentOn:html
| group |
html form:
[
group := html radioGroup.
html text:'male'.
html radioButton
group: group;
selected: self contact isMale;
callback: [self halt].
html text: 'female'.
html radioButton
group: group;
selected: self contact isFemale;
callback: [self halt].
html submitButton on: #save of:self.
]

Cheers
Andy
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.squeakfoundation.org/pipermail/beginners/attachments/20100427/64c0028f/attachment.htm


More information about the Beginners mailing list