All,
I am displaying modelformsets in my view. I am using the JQuery dynamic-formset plugin [http://code.google.com/p/django-dynamic-formset/] to handle adding/deleting individual forms within that formset.
When I add a new form, I want to give users the option of choosing a model from the database to populate that form with. I use an AJAX call to a Django view get the available models. Another AJAX call gets the form.initial data of the form corresponding to the selected model. My question is how to I take that initial data and populate the newly added form with it on the template (in the client - in JavaScript). Here is some relevant code:
view to get initial data:
def get_content(request):
app_to_get = request.GET.get('a', None)
model_to_get = request.GET.get('m', None)
id_to_get = request.GET.get('i',"")
if not app_to_get and not model_to_get and not id_to_get:
print "invalid or incomplete app/model/id combination"
raise Http404()
id_to_get = int(id_to_get)
# these two fns get me the appropriate classes for the model_to_get
# they work and are irrelevant for my current question
model_class = get_model_from_name(model_to_get,app_to_get)
form_class = get_form_from_model(model_class)
model = model_class.objects.get(pk=id_to_get)
form = form_class(instance=model)
formTemplate = Template("{{ form.initial }}")
formContext = Context({"form" : form})
return HttpResponse(formTemplate.render(formContext));
And here is some JavaScript:
function add_model() {
var url = window.document.location.protocol + "//" + window.document.location.host + "/get_content/";
url += "?a=" + app_to_add_to + "&m=" + model_to_add + "&i=" + id_to_add;
$.ajax({
url : url,
type : 'get',
success : function(data) {
alert(data);
/* I AM HERE I AM HERE I AM HERE */
}
});
return true;
};
At this point, data looks something like this:
{'url': u'http://www.foo.com/', 'id': 2, 'title': u'foo'}
But I don't know how to map that data to my newly-added form.