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.

Reply via email to