> > Of course this just dumps the JSON data into the javascript in the very > ugly JSON array I should be expecting from that call. Which is just fine. > Now I just have to figure out how to render that JSON data in a nice table > with Column headers. >
For returning the query as json, you could reuse a generic .json view for processing the output of .select().as_dict() and it would do the conversion for you. For directly convert to json a Rows object you can do rows.as_json() BTW, for managing data client-side (queries, form retrieval and submission), check this plugin: http://code.google.com/p/plugin-clientapi -- --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

