Home | History | Annotate | Download | only in paste

Lines Matching defs:select

945         that name.  ``<input type=\"radio\">`` and ``<select>`` are
967 if tag not in ('input', 'select', 'option', 'textarea',
970 if tag == 'select' and end:
972 '%r without starting select' % match.group(0))
1013 elif tag == 'select':
1045 Setting the value of a ``<select>`` selects the given option
1104 def select(self, name, value, index=None):
1107 ``<select>``.
1110 assert isinstance(field, Select)
1115 Submits the form. If ``name`` is given, then also select that
1164 # Dictionary of field types (select, radio, etc) to classes
1198 class Select(Field):
1201 Field representing ``<select>``
1205 super(Select, self).__init__(*args, **attrs)
1209 "<select multiple> not yet supported")
1239 Field.classes['select'] = Select
1241 class Radio(Select):