Re: [web2py] Need to automatically update a SQLFORM grid if new records are inserted in table

2013-04-07 Thread Michael Ellis
Hey Ricardo! Thanks very much for this and apologies for my tardy reply. I got pulled away onto other things and just now got back to testing it. It works beautifully. On Saturday, March 16, 2013 10:16:28 PM UTC-4, Ricardo Pedroso wrote: On Sat, Mar 16, 2013 at 10:42 PM, Michael Ellis

[web2py] Need to automatically update a SQLFORM grid if new records are inserted in table

2013-03-16 Thread Michael Ellis
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

Re: [web2py] Need to automatically update a SQLFORM grid if new records are inserted in table

2013-03-16 Thread Ricardo Pedroso
On Sat, Mar 16, 2013 at 10:42 PM, Michael Ellis michael.f.el...@gmail.com wrote: 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