[web2py] Re: LOAD component, timeout and passing variables / arguments

2015-02-16 Thread Anthony
Other things to consider... Unless the form submission results in creating/updating a record, you might want to do a GET instead of a POST request. Instead of a single component with a form and some data to display, consider two separate components -- one with the form, and one to display the

[web2py] Re: LOAD component, timeout and passing variables / arguments

2015-02-16 Thread Niphlod
it's best if you pack an app to reproduce the issue, or at least some complete piece of code that explains it. >From what I understand, you're expecting that a (re)LOAD()ed component would change its behaviour due to some variable. *A controller called performance_matrix.py has a method index();

[web2py] Re: LOAD component, timeout and passing variables / arguments

2015-02-16 Thread Anthony
You should probably store the state in the session, so after the initial form submission, re-loads can read the values from the session. Anthony On Monday, February 16, 2015 at 11:23:07 AM UTC-5, Boris Aramis Aguilar Rodríguez wrote: > > Hi, currently I'm using LOAD and components on a project.