[google-appengine] Re: How to do editing??

2009-03-25 Thread Arun Shanker Prasad
Hi, If you are using Django framework, request.POST.get('field_name') will give you the post value. As to what to use to get the form in edit mode use, editForm = UserProfileForm(instance=db.get(key)) To use in validation i.e postback, postbackForm = UserProfileForm(data=request.POST)

[google-appengine] Re: How to do editing??

2009-03-24 Thread arnie
I am using the app engine patch sample that uses django templates and if you want to get values from a submitted form then you need to create an instance of the form like this class UserProfileForm(forms.Form): wf_first_name = forms.CharField() wf_last_name = forms.CharField()

[google-appengine] Re: How to do editing??

2009-03-24 Thread arnie
Does there exists a way of accessing the submitted form fields without creating an instance of the same like we do in non django based project like self.request.get(fieldname) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[google-appengine] Re: How to do editing??

2009-03-23 Thread xml2jsonp
:-) Can you set a default value? first_name = self.request.get(first_name, default_value=) -- Web Blue Screen of Death http://pyoohtml.appspot.com/web-blue-screen-of-death On Mar 22, 11:09 am, arnie parvez...@rediffmail.com wrote: Will using value={{first_name}} inside the input tag cause

[google-appengine] Re: How to do editing??

2009-03-22 Thread arnie
Will using value={{first_name}} inside the input tag cause any problem when the same page is used for creating new entries instead of editing as the whole html page is evaluated at the server before rendering. Thanks Arnie --~--~-~--~~~---~--~~ You received this