I GOT IT I GOT IT!!!!

I finally, after many a late night, and with a lot of help from
everyone, got it working, I'm so happy, it's a huge step for my
project!

After I used the obj = form.save(commit=False) option, I came up with
this:

formdata = {}

    portfolio = Portfolio.objects.get(pk=portid)

    if holdid is None:
        modelform = form_for_model(Holding, form=HoldingForm)
    else:
        instance = Holding.objects.get(id__exact=holdid)
        modelform = form_for_instance(instance, form=HoldingForm)
        formdata = instance.__dict__

    if request.POST:
        form = modelform(request.POST)
        if form.is_valid():
            obj = form.save(commit=False)
            obj.portfolio = portfolio
            obj.save()
            return HttpResponseRedirect('/holding')
    else:
        form = modelform(formdata)

    return render_to_response('holding/update.html', {'form': form} )

There is still some clean up to do, but my biggest problem was I was
not getting an instance of the FK object, and was trying to just
assign the ID of the FK myself, and apperently, django objects big
time to that!

Again, thanks to everyone for their help, and as soon as I get the
final parent / child code completed, i'll be posting that too.

Thanks again!
John


On May 15, 5:56 pm, John M <[EMAIL PROTECTED]> wrote:
> I have checked the forum, and still can't believe I can't find a
> solution to what I perceive as a simple problem:
>
> I have two models:
>
> Customer
>    Name
>    phone
>
> Order
>    Customer (foreign key to Customer)
>    date
>    product
>
> When I put up the form for order, I don't want the Customer (foreign
> key) to appear.  I've not seen anything on the forum that shows you
> can easily eliminate a field from the form?
>
> Unless I'm missing how to create a custom form, bind it to the DB's
> data and use it like I can form_for_instance() and form_for_model().
>
> using FFI with a customer form, it doesn't seem to bind any data to
> the fields, unless I'm missing something big, cause that would be
> perfect, no?
>
> Hoping someone can help


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to