Changes between Version 2 and Version 3 of AjaxDjangoDojoForm


Ignore:
Timestamp:
Jun 5, 2006, 6:46:53 AM (18 years ago)
Author:
anonymous
Comment:

some corrections

Legend:

Unmodified
Added
Removed
Modified
  • AjaxDjangoDojoForm

    v2 v3  
    1313== What do we want to achieve ==
    1414I will use the model of my current website, a recipe one.
    15 When a registred user see the details of a recipe, he can mark it or update his mark by selection a small drop down list.
    16 That's nice but when he cliks ok the whole page is reloaded :/ , let's use some Ajax to make it transparent, and for the fancy effect,
     15When a registred user see the details of a recipe, he can mark it or update his mark by selecting a small drop down list.
     16That's nice but when he clicks ok the whole page is reloaded :/  let's use some Ajax to make it transparent and for the fancy effect
    1717we can add fading status message like "Your mark has been updated".
    18 The select box, proposes a mark from 1 to 5, it is actually a form which is sent to the server via POST, which in django link to a method
     18The select box proposes a mark from 1 to 5, it is actually a form which is sent to the server via POST, which in django link to a method
    1919in the view.py : ''def details(request)'' which do the innerwork for the details page generation.
    2020
Back to Top