Re: problem with request.GET.getlist['choices']

2007-10-29 Thread Kenneth Gonsalves
On 30-Oct-07, at 2:18 AM, Matthias Kestenholz wrote: > He is saying that you should really, really take the time to learn > python before > trying to do anything with django. s/before/while/ -- regards kg http://lawgon.livejournal.com http://nrcfosshelpline.in/web/ --~--~-~--~

Re: problem with request.GET.getlist['choices']

2007-10-29 Thread James Bennett
On 10/29/07, faypy <[EMAIL PROTECTED]> wrote: > sending forms checkbox values as choices , > but none of these works : > > request.POST.getlist['choices'] > request.GET.getlist['choices'] Perhaps you should pause to work through a Python tutorial. -- "Bureaucrat Conrad, you are technically corr

Re: problem with request.GET.getlist['choices']

2007-10-29 Thread faypy
thanks in advance i know i made a bad mistake, but it's 00:23 , & mind is tired . no need for python tuturial . lol thank u anyway On Oct 29, 11:48 pm, Matthias Kestenholz <[EMAIL PROTECTED]> wrote: > On 29.10.2007, at 21:39, faypy wrote: > > > > > what do u mean? > > there is no pause in between

Re: problem with request.GET.getlist['choices']

2007-10-29 Thread Matthias Kestenholz
On 29.10.2007, at 21:39, faypy wrote: > > what do u mean? > there is no pause in between... > He is saying that you should really, really take the time to learn python before trying to do anything with django. (Hint: you need getlist() , not getlist[] , but the fact you did not see this err

Re: problem with request.GET.getlist['choices']

2007-10-29 Thread faypy
what do u mean? there is no pause in between... On Oct 29, 11:35 pm, "James Bennett" <[EMAIL PROTECTED]> wrote: > On 10/29/07, faypy <[EMAIL PROTECTED]> wrote: > > > sending forms checkbox values as choices , > > but none of these works : > > > request.POST.getlist['choices'] > > request.GET.get

problem with request.GET.getlist['choices']

2007-10-29 Thread faypy
hi using django 0.96.1 & sending forms checkbox values as choices , but none of these works : request.POST.getlist['choices'] request.GET.getlist['choices'] error: 'instancemethod' object is unsubscriptable but these works: request.POST['choices'] request.GET['choices'] & give the the LAST CHOI