Changes between Version 2 and Version 3 of AjaxDjangoDojoForm
- Timestamp:
- Jun 5, 2006, 6:46:53 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AjaxDjangoDojoForm
v2 v3 13 13 == What do we want to achieve == 14 14 I 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 selecti ona small drop down list.16 That's nice but when he cli ks ok the whole page is reloaded :/ , let's use some Ajax to make it transparent, and for the fancy effect,15 When a registred user see the details of a recipe, he can mark it or update his mark by selecting a small drop down list. 16 That'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 17 17 we 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 method18 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 19 19 in the view.py : ''def details(request)'' which do the innerwork for the details page generation. 20 20