I've got an application that accepts JSON test reports from remote systems
and displays them in a SQLFORM grid with the most recent reports first.
The controller and view for what the user sees is essentially the
following:
CONTROLLER
def test_report_manage():
""" Controller for Reports page """
...
form = SQLFORM.grid( ... )
return locals()
VIEW
...
{=form}
...
The JSON controller is separate from the above. It merely validates and
inserts new report records. The reports arrive at random intervals. My
client has asked for the page to automatically update when new reports
arrive. What's the cleanest way to go about this, bearing in mind that
this functionality is mainly intended for demonstration purposes at a trade
show?
Thanks,
Mike
--
---
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.