Changes between Version 12 and Version 13 of AjaxDjangoDojoForm
- Timestamp:
- Jun 5, 2006, 8:43:52 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AjaxDjangoDojoForm
v12 v13 14 14 I will use the model of my current website, a recipe one. 15 15 When a registred user see the details of a recipe, the user can mark it or update their mark by selecting a small drop down list. 16 But when the user clicks ok the whole page isreloads. We will use some Ajax to make it transparent and for the fancy effect16 But when the user clicks ok the whole page reloads. We will 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 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 … … 163 163 If you are using dreamhost for hosting please be aware that simplejson is not installed. 164 164 Instead you will have to install the source of simplejson in a folder in your home directory eg /proz/json/simple_json 165 the simple_json directory contains the required __init__.py for it to be loaded as a python module.165 The simple_json directory contains the required __init__.py for it to be loaded as a python module. 166 166 167 167 Then in your ~/.bash_profile add the directory to your python path like below. … … 183 183 Any troubles : coulix@gmail.com 184 184 185 coulix186 185 187 188