I need the records from the grid itself. The objective is to be able to compare the modified_on field from the record of the grid with the same record on the db at the moment of the save (onvalidation) to detect if there was a record change between those 2 moments. Like the detect_record_change of the form, but for the grid. I found that the grid has a attribute rows which are the records and was able to make it work.
segunda-feira, 25 de Março de 2019 às 23:11:35 UTC, Anthony escreveu: > > def onvalidation(form): > current_record = db.mytable(request.args(-1)) > > Alternatively, db.mytable(request.post_vars.id). > > Anthony. > > On Monday, March 25, 2019 at 10:25:26 AM UTC-4, João Matos wrote: >> >> Hello, >> >> How can I access the rows that resulted from the query made by the >> SQLFORM.grid from the onvalidation function? >> >> Thanks, >> >> JM >> >> -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- 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/d/optout.

