Skip to content

Instantly share code, notes, and snippets.

@gorosz
Created September 16, 2013 10:01
Show Gist options
  • Save gorosz/6578772 to your computer and use it in GitHub Desktop.
Save gorosz/6578772 to your computer and use it in GitHub Desktop.
[web2py] - Grid oncreate, update, delete
def do_something_with(form):
...
return
SQLFORM.grid(....,oncreate=lambda form: do_something_with(form))
SQLFORM.grid(....,onupdate=lambda form: do_something_with(form))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment