On 29 jan, 17:43, "seven.reeds" <[email protected]> wrote: > I must be missing something. I am trying to use a FormPanel to do a > GET request on an existing CGI script. I need to pass query string > values to the script. My understanding of FormPanel suggests that any > of the recognized form elements (textBox, listBox, Hidden, etc) that > exist within the FormPanel will have their values sent along with the > form on submit. > > Should FireBug be able to see this query string in the request > headers? This is FireFox 3.5.7 running on the latest or very recent > fully up to date Ubunto and the most recent FireBug updates.
The query-string is in the URL, not the headers! > Request Headers [...] > Content-Type application/x-www-form-urlencoded Oh, are you sure you're making a GET request? I find it odd that Firefox sends a Content-Type on a GET request. If it happens that you're doing a POST, then FireBug should show a "Form Data" tab where you'll see each "field" sent in the request body. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
