RE: Documentation Checked But Unclear: How to supress form.errors from views when needed?

2011-04-04 Thread Henry Versemann
to supress form.errors from views when needed? I dont understand so you render a view with a form once and you get form errors on the initial view? Or Is there a POST/GET with formdata being submitted generating this issue? *which would be by design as fas as i can tell you want form verification

Re: Documentation Checked But Unclear: How to supress form.errors from views when needed?

2011-04-04 Thread Sam Walters
I dont understand so you render a view with a form once and you get form errors on the initial view? Or Is there a POST/GET with formdata being submitted generating this issue? *which would be by design as fas as i can tell you want form verification to work Note:

Re: Documentation Checked But Unclear: How to supress form.errors from views when needed?

2011-03-30 Thread Shawn Milochik
What do you mean by "if I refresh a page"? If you refresh a page that has a form on it but has not been submitted, I wouldn't expect the behavior you describe. If you submit a form improperly and it displays errors, then you hit 'refresh,' the view will still get the POST (or GET) and will do

Documentation Checked But Unclear: How to supress form.errors from views when needed?

2011-03-30 Thread hank23
I have an edit screen with more than a dozen fields on it of various types (text/CharField, select/CharField, date/DateField). When I refresh the screen sometimes I want to suppress all of the field required errors generated by empty fields prior to the refresh actually taking place. So far I have