Re: access model/instance from custom field/widget

2011-10-04 Thread Aljosa Mohorovic
the is the only way i was able to access data in field/widget, any comments? class MyForm(forms.ModelForm): def __init__(self, *args, **kwargs): super(MyForm, self).__init__(*args, **kwargs) self.fields['my_field'].instance_data = {'instance': self.instance}

access model/instance from custom field/widget

2011-10-04 Thread Aljoša Mohorović
if i have a modelform with custom field and widget how can i access current model/instance (or None) in field/widget? is it possible? Aljosa -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to