I'm not an expert on web2py, but I think this isn't something you will find included in web2py, as there is many things that would need to be adjusted to each specific case. I think you will have to write some custom javascript to detect the moment when the input field has changes, and then send an http POST to store the new value. Notice this could fire a lot of http POSTs to your application, so maybe it is better to send the POST when the input loses focus (that is the onblur method <https://www.w3schools.com/jsref/event_onblur.asp>).
Another used technique is to set a timeout in javascript <https://www.w3schools.com/jsref/met_win_settimeout.asp> (let's say, 5 seconds) to send an http POST with the values of all the fields. Then, each time an input value changes, reset the timeout. That is a simple autosave mechanism. Regards, Lisandro El domingo, 15 de julio de 2018, 10:05:22 (UTC-3), Diego Tostes escribió: > > Hi, > > i have a table with more than 60 fields. Is it possible to create a "auto > save" feature with web2py Built-in methods to allowing users to have data > saved while the process of filling the form? > > rgds > > Diego > -- 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.

