Re: Getting file list and other paramters

2013-05-16 Thread Tom Evans
On Thu, May 16, 2013 at 2:07 PM, Larry Martell wrote: > In my case they did not have display:none, they just had > disabled="True". I can't make them hidden, I do want them shown, just > not editable by the user. > Your csrftoken input is inside a div that has style "display: none". It's also a h

Re: Getting file list and other paramters

2013-05-16 Thread Larry Martell
On Thu, May 16, 2013 at 2:34 AM, Tom Evans wrote: > On Wed, May 15, 2013 at 6:08 PM, Larry Martell > wrote: >> On Wed, May 15, 2013 at 9:47 AM, Tom Evans wrote: >>> On Wed, May 15, 2013 at 4:19 PM, Larry Martell >>> wrote: On Wed, May 15, 2013 at 9:04 AM, Tom Evans wrote: > On

Re: Getting file list and other paramters

2013-05-16 Thread Tom Evans
On Wed, May 15, 2013 at 6:08 PM, Larry Martell wrote: > On Wed, May 15, 2013 at 9:47 AM, Tom Evans wrote: >> On Wed, May 15, 2013 at 4:19 PM, Larry Martell >> wrote: >>> On Wed, May 15, 2013 at 9:04 AM, Tom Evans wrote: On Wed, May 15, 2013 at 3:38 PM, Larry Martell wrote: > I

Re: Getting file list and other paramters

2013-05-15 Thread Larry Martell
On Wed, May 15, 2013 at 4:44 PM, Larry Martell wrote: > On Wed, May 15, 2013 at 9:47 AM, Tom Evans wrote: >> On Wed, May 15, 2013 at 4:19 PM, Larry Martell >> wrote: >>> On Wed, May 15, 2013 at 9:04 AM, Tom Evans wrote: On Wed, May 15, 2013 at 3:38 PM, Larry Martell wrote: > I

Re: Getting file list and other paramters

2013-05-15 Thread Larry Martell
On Wed, May 15, 2013 at 9:47 AM, Tom Evans wrote: > On Wed, May 15, 2013 at 4:19 PM, Larry Martell > wrote: >> On Wed, May 15, 2013 at 9:04 AM, Tom Evans wrote: >>> On Wed, May 15, 2013 at 3:38 PM, Larry Martell >>> wrote: I have a form with an upload files button. The form is POSTed so

Re: Getting file list and other paramters

2013-05-15 Thread Larry Martell
On Wed, May 15, 2013 at 12:50 PM, Larry Martell wrote: > On Wed, May 15, 2013 at 11:32 AM, Bill Freeman wrote: >>> > If there are other values you want to send that are not form inputs, one >>> > option is to url encode them and add them as query parameters to the >>> > form >>> > tag's action at

Re: Getting file list and other paramters

2013-05-15 Thread Larry Martell
On Wed, May 15, 2013 at 11:32 AM, Bill Freeman wrote: > > > > On Wed, May 15, 2013 at 1:09 PM, Larry Martell > wrote: >> >> On Wed, May 15, 2013 at 9:51 AM, Bill Freeman wrote: >> > If you are saying that you have other inputs in the form, and that you >> > are >> > not getting them in request.P

Re: Getting file list and other paramters

2013-05-15 Thread Bill Freeman
On Wed, May 15, 2013 at 1:09 PM, Larry Martell wrote: > On Wed, May 15, 2013 at 9:51 AM, Bill Freeman wrote: > > If you are saying that you have other inputs in the form, and that you > are > > not getting them in request.POST, you may not be specifying the correct > > enctype attribute in the fo

Re: Getting file list and other paramters

2013-05-15 Thread Larry Martell
On Wed, May 15, 2013 at 9:51 AM, Bill Freeman wrote: > If you are saying that you have other inputs in the form, and that you are > not getting them in request.POST, you may not be specifying the correct > enctype attribute in the form tag (should be multipart/form-data). That's the form tag I ha

Re: Getting file list and other paramters

2013-05-15 Thread Larry Martell
On Wed, May 15, 2013 at 9:47 AM, Tom Evans wrote: > On Wed, May 15, 2013 at 4:19 PM, Larry Martell > wrote: >> On Wed, May 15, 2013 at 9:04 AM, Tom Evans wrote: >>> On Wed, May 15, 2013 at 3:38 PM, Larry Martell >>> wrote: I have a form with an upload files button. The form is POSTed so

Re: Getting file list and other paramters

2013-05-15 Thread Bill Freeman
If you are saying that you have other inputs in the form, and that you are not getting them in request.POST, you may not be specifying the correct enctype attribute in the form tag (should be multipart/form-data). If there are other values you want to send that are not form inputs, one option is t

Re: Getting file list and other paramters

2013-05-15 Thread Tom Evans
On Wed, May 15, 2013 at 4:19 PM, Larry Martell wrote: > On Wed, May 15, 2013 at 9:04 AM, Tom Evans wrote: >> On Wed, May 15, 2013 at 3:38 PM, Larry Martell >> wrote: >>> I have a form with an upload files button. The form is POSTed so that >>> I can get the file list in HttpRequest.FILES (which

Re: Getting file list and other paramters

2013-05-15 Thread Larry Martell
On Wed, May 15, 2013 at 9:04 AM, Tom Evans wrote: > On Wed, May 15, 2013 at 3:38 PM, Larry Martell > wrote: >> I have a form with an upload files button. The form is POSTed so that >> I can get the file list in HttpRequest.FILES (which is only populated >> for a POST). But I have other parameter

Re: Getting file list and other paramters

2013-05-15 Thread Tom Evans
On Wed, May 15, 2013 at 3:38 PM, Larry Martell wrote: > I have a form with an upload files button. The form is POSTed so that > I can get the file list in HttpRequest.FILES (which is only populated > for a POST). But I have other parameters I want to pass back as well > (which I cannot do in POST)