Override Django inlineformset_factory has_changed() to always return True

Posted by John on Stack Overflow See other posts from Stack Overflow or by John
Published on 2010-05-13T08:44:38Z Indexed on 2010/05/13 9:24 UTC
Read the original article Hit count: 227

Filed under:
|

Hi,

I am using the django inlineformset_factory function.

a = get_object_or_404(ModelA, pk=id)

FormSet = inlineformset_factory(ModelA, ModelB)
if request.method == 'POST':
    metaform = FormSet (instance=a, data=request.POST)

    if metaform.is_valid():
        f = metaform.save(commit=False)

        for instance in f:
           instance.updated_by = request.user
           instance.save()
else:
    metaform = FormSet(instance=a)

return render_to_response('nodes/form.html', {'form':metaform})

What is happening is that if I change any of the data then everything works ok and all the data gets updated. However if I don't change any of the data then the data is not updated. i.e. only entries which are changed go through the for loop to be saved. I guess this makes sense as there is no point saving data if it has not changed. However I need to go through and save every object in the form regardless of whether it has any changes on not.

So my question is how do I override this so that it goes through and saves every record whether it has any changes or not?

Hope this makes sense

Thanks

© Stack Overflow or respective owner

Related posts about django

Related posts about django-forms