Re: Very bad experience in Django...

2009-06-26 Thread iyank7
Joshua Partogi wrote: > > You need to define required=False > > On Thu, Jun 25, 2009 at 10:24 PM, steveneo > wrote: if steveneo got `Very Bad experience`, maybe i got `Very..very... n very... bad experience`, but i still learning django ^_^

Re: Very bad experience in Django...

2009-06-26 Thread Lars Stavholm
Chris Withers wrote: > steveneo wrote: >> I try to use Django in a new project. Honestly, it is very bad >> experience. It looks not boosting my development speed. Today, I >> almost give up and begin to look up another Python framework > > Go for it :-) +1 /L

Re: Very bad experience in Django...

2009-06-25 Thread Karen Tracey
On Thu, Jun 25, 2009 at 9:46 AM, Chris Withers wrote: > > steveneo wrote: > > BooleanField limits only to CheckBox? But I set > > widget=HiddenField It does not report error. HTML renders > > correctly, but actually, you can not use like that?! > > Didn't you hear me:

Re: Very bad experience in Django...

2009-06-25 Thread Richard Shebora
Chris, I don't know you. But I hope your day gets a little better and your problems lighter. Sincerely, Richard On 6/25/09, Chris Withers wrote: > > > steveneo wrote: > > BooleanField limits only to CheckBox? But I set > > widget=HiddenField It does not report

Re: Very bad experience in Django...

2009-06-25 Thread Xavier Ordoquy
nt to include a checkbox in your form that can be either checked or unchecked, you must remember to pass in required=False when creating the BooleanField" By saying you have a very bad experience with Django because you didn't read the documentation there

Re: Very bad experience in Django...

2009-06-25 Thread Chris Withers
steveneo wrote: > BooleanField limits only to CheckBox? But I set > widget=HiddenField It does not report error. HTML renders > correctly, but actually, you can not use like that?! Didn't you hear me: I said go find another framework, Django obviously sucks because one new user can't get

Re: Very bad experience in Django...

2009-06-25 Thread steveneo
BooleanField limits only to CheckBox? But I set widget=HiddenField It does not report error. HTML renders correctly, but actually, you can not use like that?! On Jun 25, 11:22 pm, Chris Withers wrote: > steveneo wrote: > > I try to use Django in a new project.

Re: Very bad experience in Django...

2009-06-25 Thread Chris Withers
steveneo wrote: > I try to use Django in a new project. Honestly, it is very bad > experience. It looks not boosting my development speed. Today, I > almost give up and begin to look up another Python framework Go for it :-) Chris -- Simplistix - Content Management, Zope & Python

Re: Very bad experience in Django...

2009-06-25 Thread Daniel Roseman
On Jun 25, 1:24 pm, steveneo wrote: > I try to use Django in a new project. Honestly, it is very bad > experience. It looks not boosting my development speed. Today, I > almost give up and begin to look up another Python framework > > One question,  does anyone use a

Re: Very bad experience in Django...

2009-06-25 Thread Joshua Partogi
You need to define required=False On Thu, Jun 25, 2009 at 10:24 PM, steveneo wrote: > > I try to use Django in a new project. Honestly, it is very bad > experience. It looks not boosting my development speed. Today, I > almost give up and begin to look up another Python

Very bad experience in Django...

2009-06-25 Thread steveneo
I try to use Django in a new project. Honestly, it is very bad experience. It looks not boosting my development speed. Today, I almost give up and begin to look up another Python framework One question, does anyone use a hiddenInput in Form? Something like: class ProfileForm(forms.Form):