Hi,
Does anybody know how to get the selected item of a dropdown menu from within a clean method in a modelform object, before the object has been saved? I have tried the following:
def clean_something(self):
dropdown = self.cleaned_data.get('dropdown')
where 'dropdown' is the field representing the dropdown menu, but this doesn't seem to work.
Any ideas?
Cheers, Charles