Differences between revisions 4 and 6 (spanning 2 versions)
Revision 4 as of 2010-01-11 16:09:27
Size: 1082
Editor: SusySue
Comment:
Revision 6 as of 2011-02-15 06:05:17
Size: 1032
Editor: localhost
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
A mistake as a [http://www.resumesplanet.com resume writer] I have made a couple of times is to reinitialise the form from the model part way through the user's interaction with the page (ie, before they've saved it). It winds up losing any changes that the user has made on the form. The lesson here is that the form should only be loaded from the model once when the user starts interacting with it; don't reload it on each page refresh. A mistake I have made a couple of times is to reinitialise the form from the model part way through the user's interaction with the page (ie, before they've saved it). It winds up losing any changes that the user has made on the form. The lesson here is that the form should only be loaded from the model once when the user starts interacting with it; don't reload it on each page refresh.

Flow of Control

The flow of control through Albatross forms is tied in with Albatross's flow of control.

A mistake I have made a couple of times is to reinitialise the form from the model part way through the user's interaction with the page (ie, before they've saved it). It winds up losing any changes that the user has made on the form. The lesson here is that the form should only be loaded from the model once when the user starts interacting with it; don't reload it on each page refresh.

  1. Constructor
    • Create the form itself.
  2. Load from model
    • I normally do this in the constructor.
  3. Display the form
    • Render the form to the web page, typically using <alx-form name="model_form" errors> in your Albatross template for the page.

  4. Validate
    • Check that the data that the user entered is correct. The call to validate will raise a FormValidationError exception.

  5. Merge
    • Update the model with the data fields collected from the form.

None: Flow_of_control (last edited 2011-02-15 06:05:17 by localhost)