Hello, everyone. I'm trying to create a page for editing a database entry. The form I'm using has a pair of radio buttons for a person's gender. I'm using the page template's tal:attribute feature to set the default values of all the text input fields, and that works great. But I can't figure out how to do this with the radio buttons, since they don't use the format 'value="CHECKED"', they simply use 'CHECKED'. The tal:attribute command seems to want the 'field=value' format, which HTML doesn't want. Here's a line from my template page: <td> <input type="radio" name="gender" value="M" ischecked tal:attributes="ischecked python:here.checkbox_test(here.gender,'M')" tabindex="3"> Male</td> I tried to trick it with an artificial 'ischecked' flag (hoping it would simply be replaced), but I end up with 'ischecked="CHECKED"'. Has anyone done this, or can anyone point me to some code that does it? I haven't found any examples or tutorials yet that describe this specific problem. TIA! -- Colin Fox cfox@crystalcherry.com CF Consulting Inc. GPG Fingerprint: D8F0 84E7 E7CC 5C6C 9982 F1A7 A3EB 6EA3 BC97 572F