Lines Matching refs:Radio
945 that name. ``<input type=\"radio\">`` and ``<select>`` are
992 if tag == 'input' and attrs.get('type') == 'radio':
995 field = Radio(self, tag, name, match.start(), **attrs)
999 assert isinstance(field, Radio)
1046 (and confirms it is an option). Setting radio fields does the
1164 # Dictionary of field types (select, radio, etc) to classes
1241 class Radio(Select):
1244 Field representing ``<input type="radio">``
1247 Field.classes['radio'] = Radio