Simon, You could either 1) upload a static html file like theirs or 2) use templates to generate the html. I would guess the second one is what you want to do.
Have a look at: http://code.google.com/appengine/docs/ Robert On Mon, Feb 22, 2010 at 10:07 AM, sjh <[email protected]> wrote: > Hi, > The new chart api allows the post option to load more data points: > http://code.google.com/apis/chart/docs/post_requests.html > > In the support docs at the link above there is an example which > automatically does a submit when a page is loaded via javascript: > > <script type='application/javascript'> > // Send the POST when the page is loaded, > // which will replace this whole page with the retrieved chart. > function loadGraph() { > var frm = document.getElementById('post_form'); > if (frm) { > frm.submit(); > } > } > </script> > </head> > <body onload="loadGraph()"> > <form action='http://chart.apis.google.com/chart' method='POST' > id='post_form'> > etc > > Any idea how I do the equivalent, i.e. force a submit when a page is > loaded with GAE. > > thanks, Simon > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" 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-appengine?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Google App Engine" 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-appengine?hl=en.
