vote up 1 vote down star

I am using Django and the Google Web Toolkit (GWT) for my current project. I would like to pass a ModelForm instance to GWT via an Http response so that I can "chop" it up and render it as I please. My goal is to keep the form in sync with changes to my models.py file, yet increase control I have over the look of the form. However, the django classes for serialization, serializers and simplejson, cannot serialize a ModelForm. Neither can cPickle. What are my alternatives?

flag

80% accept rate
To "keep the form in sync with changes to my models.py", wouldn't you need to implement something of an equivalent of django.forms in the client? – muhuk Dec 15 '08 at 19:18

2 Answers

vote up 1 vote down

If you were using pure Django, you'd pass the form to your template, and could then call individual fields on the form for more precise rendering, rather than using ModelForm.to_table. You can use the following to iterate over each field and render it exactly how you want:

{% for field in form.fields %}
    <div class="form-field">{{ field }}</div>
{% endfor %}

This also affords you the ability to do conditional checks using {% if %} blocks inside the loop should you want to exclude certain fields.

link|flag
vote up 0 vote down

If your problem is just to serialze a ModelForm to json, just write your own simplejson serializer subclass.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.