Hi, I'm writing a simple statistic analysis system using web2py; when a user requests a stats page for a certain site, it will show 9 graphs. I want each of these 9 graphs to generate async (so the user sees 9 loading images which, randomly, turn into graphs when that specific graph is done), but when the user re-requests, I don't want any JS/ AJAX anymore but just a static HTML showing the graphs (which all have some text values as well).
What is the best pattern in web2py to accomplish this? We are porting from PHP where this was implemented as a bit of a hack (pseudocode); if ($newload) { $(".stats-visits .box-content").load('result.php', array ('id', $dom['id'], 'blk', 'stats-visits')).'"); etc etc } else { show_static($dom['id']); } I would imagine web2py has a nicer/better pattern for this kind of thing? Thank you
-- You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to web...@googlegroups.com. To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/web2py?hl=en.