Re: How to use pre-built HTML forms in Django

2010-03-09 Thread MMRUser
So as per your knowledge can u suggest a proper way of getting data from a form but not as mentioned in http://www.djangobook.com/en/2.0/chapter07/ that way is too rusty. Thanks. On Mar 9, 7:28 pm, rebus_ wrote: > On 9 March 2010 15:22, MMRUser wrote: > > > > > The problem

Re: Django server side ajax vallidation

2010-03-09 Thread MMRUser
Is there no one??? On Mar 9, 8:18 pm, MMRUser wrote: > Hi, > > Recently I'm trying to implement a simple Django application that > include one server side AJAX validation, it's a simple form input > field (username). I have used a pre-built in line AJAX validation >

Re: How to use pre-built HTML forms in Django

2010-03-09 Thread MMRUser
le form so there's only one HTML file.Do you think that is it ok to just ignore the Django's template system and get along with the normal way. On Mar 9, 2:32 pm, rebus_ wrote: > On 9 March 2010 05:54, MMRUser wrote: > > > > > Thanks another doubt,what about the css mappings

Django server side ajax vallidation

2010-03-09 Thread MMRUser
Hi, Recently I'm trying to implement a simple Django application that include one server side AJAX validation, it's a simple form input field (username). I have used a pre-built in line AJAX validation mechanism which uses jQuery. So the code goes like this HTML snippet Username: The serve

Re: How to use pre-built HTML forms in Django

2010-03-08 Thread MMRUser
Thanks another doubt,what about the css mappings class="field text medium" do they also need to include in the class definition in Django. On Mar 9, 9:21 am, rebus_ wrote: > On 9 March 2010 05:04, MMRUser wrote: > > > > > I have an pre-built HTML form (

How to use pre-built HTML forms in Django

2010-03-08 Thread MMRUser
I have an pre-built HTML form (means I design the HTML form separately) and I need to reuse it with Django form class (django.forms), So how do I incorporate my HTML form with Django form class. for example HTML: Username * How do I map this HTML in to Django form definition, I k