Changes between Version 21 and Version 22 of AjaxDjangoDojoForm


Ignore:
Timestamp:
Jun 6, 2006, 11:00:01 AM (18 years ago)
Author:
coulix
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AjaxDjangoDojoForm

    v21 v22  
    66{{{
    77#!html
    8 Part 1 <br/> <a href="#P1">Ajax basic form submition, Django server answer return to Ajax call.</a>
    9 <br/>
     8Part 1 <br/> <a href="#P1">Ajax basic form submition, Django server answer return to Ajax call.</a><br/>
    109Part 2 <br/><a href="#P2">Handling the form when JavaScript is desactivated.</a>
    1110}}}
     
    209208
    210209{{{
    211                 <form  enctype="multipart/form-data" id="myForm" method="post">
    212                         <span id="mark_message">{{mark_message}}</span>
    213                         <select name="select_mark">
    214                                 [...]
    215                         </select>
    216                         '''<input id="sendFormButton" type="submit" value="Notez" />'''
    217                 </form>
     210<form  enctype="multipart/form-data" id="myForm" method="post">
     211        <span id="mark_message">{{mark_message}}</span>
     212        <select name="select_mark">
     213                [...]
     214        </select>
     215        '''<input id="sendFormButton" type="submit" value="Notez" />'''
     216</form>
    218217}}}
    219218
     
    240239[...]
    241240<input type="hidden" name="js" value="false">
    242 [...]
     241</form>
    243242}}}
    244243
Back to Top