Re: newforms-admin: howto define custom ModelForm for usage in admin interface

2008-02-21 Thread lowshoe
thanks! a subclass of newforms.BaseForm did the job! lowshoe On Feb 20, 11:35 pm, presclark <[EMAIL PROTECTED]> wrote: > Hello, I was having a similar, but slightly different problem. > > My hangup was that the form_change form wasn't being populated. It > seems

newforms-admin: howto define custom ModelForm for usage in admin interface

2008-02-12 Thread lowshoe
ctly my Document model which i defined inside the Meta class. Did i miss something or whats wrong there? regards, lowshoe --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post t

Re: newforms validator_list

2008-02-08 Thread lowshoe
or validation again. any ideas? cheers, lowshoe --~--~-~--~~~---~--~~ 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 th

Re: newforms: create form with preselected value

2008-01-22 Thread lowshoe
thanks, karen i didnt know the dynamic intial values yet. django surprises me over and over again :-) lowshoe --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group,

newforms: create form with preselected value

2008-01-21 Thread lowshoe
form = FolderForm({'parent': id}) If I render this form, i unfortunately get already validation errors about the other fields that are missing. Is there a way to instantiate and render a Form without validation or perhaps another possibility to prefill form fields? r