Changes between Version 1 and Version 2 of AJAX/Dojo/RefactoredFormSubmit


Ignore:
Timestamp:
Feb 11, 2007, 8:30:48 AM (17 years ago)
Author:
erob@…
Comment:

added initial skeleton-like layout

Legend:

Unmodified
Added
Removed
Modified
  • AJAX/Dojo/RefactoredFormSubmit

    v1 v2  
    44except that this one is expected to function with python-cjson for receiving JSON data.
    55
    6 Write stuff here 8-P
     6My initial objective was to display validation errors without doing a page-refresh, by using JSON
     7for carrying errors (or whatever else you could possibly imagine) back to the client browser.
     8
     9First thing first, lets write the server view, as its really important to make the forms working
     10without the use of Javascript:
     11
     12[...]
     13
     14
     15Then, we should definitely try to explain the client side:
     16
     17[...]
     18
     19
     20
     21
     22
     23 
Back to Top