Skip to content Skip to sidebar Skip to footer

Google Visualization Api On App Engine Not Working... (python)

I'm trying to render the sortable table that's provided in Google visualization API in my app on app engine, but it's not working. The app is written in python and uses the django

Solution 1:

Wait, where are you doing the rendering? The visapi stuff goes in the client-side. Is that where you have it? (Sorry if that's obvious; it's really not entirely clear from the way you wrote the question.)

More details would definitely help.

Solution 2:

In case anyone else has this issue - I messed up headers of the page generated by rendering with the same function I created for XML output.

Including this killed it: handler.response.headers["Content-Type"] = "text/xml"

Post a Comment for "Google Visualization Api On App Engine Not Working... (python)"