On Saturday, December 18, 2010 12:06:23 PM UTC+1, 4F2E4A2E wrote: > > I did read the Paypal Dokumentation and searched alot, but still dont > get it. > What am i doing wrong!? How can i output the whole Form to debug? >
Every browser (except IE prior to version 8) comes with developer tools: Firebug in Firefox, Developer Tools in Chrome and Safari, Dragon Fly in Opera, Developer Tools in IE8+ Some of them don't display network exchanges (Developer Tools in IE) but then you can use tools such as Fiddler2 (on Windows) or Wireshark to see what goes on the wire. panel.add(form); > panel.add(submitButton); > RootPanel.get().add(panel); > } You should add the panel to the form, so the Hidden fields are contained within the form, not the other way around (making the Hidden fields siblings of the FormPanel). Inspecting the DOM with your browser's developer tools would have revealed it. -- 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.
