
You can only select one radio each group.

The name attribute is related to group name.

selected=True)Ģ.) Can the be grouped, so that only ONE (1) radio button is pushed according to a group? How can I unpush them?Ģ.) Can the be grouped, so that only ONE (1) radio button is pushed according to a groupģ.) How could I read the state of the buttons later on programmatically e.g.

for radios: simple_radios.py from reportlab.pdfgen import canvasįrom import magenta, pink, blue, greenĬ.drawCentredString(300, 700, 'Radio demo')įorm.radio(name='radio1', tooltip='Field radio1',įorm.radio(name='radio2', tooltip='Field radio2',įorm.radio(name='radio3', tooltip='Field radio3',ġ.) The radios are always in a "pushed" state. I have created a form with some radio buttons, following the examples from Creating Interactive PDF Forms in ReportLab with Python
