Re: Multiple forms with same name.

2011-10-01 Thread Jian Chang
request.GET.getlist('txt','') sorry! 在 2011-10-2 上午4:37,"Jian Chang" 写道: > Fisrt,it's not multiple forms as your description. > You can use request.GET.getlist('text','') to get the every text in one list > 在 2011-9-26 下午11:34,"sakthi" 写道: >> In a page i made multiple text forms with the same name.

Re: Multiple forms with same name.

2011-10-01 Thread Jian Chang
Fisrt,it's not multiple forms as your description. You can use request.GET.getlist('text','') to get the every text in one list 在 2011-9-26 下午11:34,"sakthi" 写道: > In a page i made multiple text forms with the same name. i cannot get > the values of all the forms. only the last form's value is avail

Re: Multiple forms with same name.

2011-09-26 Thread sakthi
Thank you. But how to use that. can you please briefly demonstrate in my code that how could i use it in views.py to populate the values. On Sep 26, 11:36 am, Shawn Milochik wrote: > Use the 'prefix' kwarg that comes with Django forms. -- You received this message because you are subscribed to

Re: Multiple forms with same name.

2011-09-26 Thread Shawn Milochik
Use the 'prefix' kwarg that comes with Django forms. -- 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 this group, send email to django-users+unsubscr...@goog

Multiple forms with same name.

2011-09-26 Thread sakthi
In a page i made multiple text forms with the same name. i cannot get the values of all the forms. only the last form's value is available. my html looks like this how can i get the values of all the forms having the same name. Thank you. -- You received this message because you are subs