Okay. You can verify what you are getting back from the browser by putting
print request.post_vars in your controller right after the call to form.accepts(). Assuming you are using Rocket, the output will show up in the terminal window where you started web2py.py. On Sep 7, 4:15 pm, Christopher Baron <[email protected]> wrote: > I don't believe I've taken the hidden fields out. The only thing I've > changed in controllers/appadmin.py deals with redirection based on a > remote user. > > I've written my own workaround, so I guess no one has to spend any > more time dealing with this. Thanks for the assistance. > > On Sep 7, 3:11 pm, Cliff <[email protected]> wrote: > > > > > > > > > If your form doesn't have the default hidden fields, the controller > > assumes it's a resubmit and fails silently. > > > Check out the book, Chapter 7, SQLFORMS. > > > But why would you want to do this? > > > On Sep 7, 2:05 pm, Christopher Baron <[email protected]> wrote: > > > > Hi web2py users, > > > > When trying to update a row in a database table using the appadmin > > > interface, it does not work. The same page returns with the original > > > values. > > > > In the appadmin controller, form.accepts is returning false - this may > > > have to do with a hack I've made to the controllers.appadmin.py file > > > ( I've made changes such that one can access the appadmin remotely > > > without an ssh tunnel or https ) > > > > How do I debug the form.accepts function in gluon ? > > > > How can I make changes to the gluon.sqlhtml code and reload these > > > changes? > > > > Thanks in advance, > > > > Chris

