summaryrefslogtreecommitdiff
path: root/django/newforms/widgets.py
AgeCommit message (Expand)Author
2007-02-15Fixed #3409 -- Added render_value argument to newforms PasswordInput. Thanks ...Adrian Holovaty
2007-01-27Fixed #3312 -- CheckboxSelectMultiple no longer uses duplicate ID attributes ...Adrian Holovaty
2007-01-27Fixed #3300 -- Changed newforms Select widget to collapse 'choices' into a li...Adrian Holovaty
2007-01-24newforms: Implemented NullBooleanField and NullBooleanSelectAdrian Holovaty
2007-01-23newforms: Added MultiValueField, SplitDateTimeField, MultiWidget, SplitDateTi...Adrian Holovaty
2007-01-20newforms: Moved flatatt function from widgets.py to util.pyAdrian Holovaty
2007-01-13Fixed #3289 -- newforms: Added value_from_datadict method to MultipleHiddenInputAdrian Holovaty
2007-01-10Fixed #3266 -- newforms: Made RadioSelect accept funky characters. Thanks for...Adrian Holovaty
2007-01-09Fixed #3193 -- newforms: Modified as_hidden() to handle MultipleChoiceField c...Adrian Holovaty
2006-12-26newforms: Implemented RadioFieldRenderer.__getitem__(), which allows for inde...Adrian Holovaty
2006-12-24newforms: Removed Widget.requires_data_list parameter, which was made redunda...Adrian Holovaty
2006-12-13Fixed #3114 -- newforms MultipleChoiceField now handles MultiValueDicts prope...Adrian Holovaty
2006-12-05newforms: Added __unicode__() methods wherever there were __str__() methods, ...Adrian Holovaty
2006-11-30newforms: Added check_test argument to CheckboxInput and changed its render()...Adrian Holovaty
2006-11-30Fixed #3082 -- newforms: Changed Form as_table() and as_ul() not to display v...Adrian Holovaty
2006-11-29newforms: Added Widget.value_from_datadict hook, which allows a Widget to def...Adrian Holovaty
2006-11-29newforms: Added docstring to Widget.build_attrs()Adrian Holovaty
2006-11-29newforms: Implemented CheckboxSelectMultipleAdrian Holovaty
2006-11-29newforms: The <input> tags in a RadioSelect now each have a distinct ID. Also...Adrian Holovaty
2006-11-16newforms: Fixed #3008 -- Widgets now support strings containing utf-8 charact...Adrian Holovaty
2006-11-15newforms: Implemented RadioSelect, with unit testsAdrian Holovaty
2006-11-15newforms: Cleaned up some un-DRYness by adding Widget.build_attrs(). Also sli...Adrian Holovaty
2006-11-02Implemented SelectMultiple in django.newforms.widgetsAdrian Holovaty
2006-11-01Added PasswordInput, HiddenInput, FileInput, Select to django.newforms.widgetsAdrian Holovaty
2006-10-28Split django.newforms into forms, fields, widgets, util. Also moved unit test...Adrian Holovaty