Re: Easiest way to ajax enable django forms

2016-07-14 Thread Derek
Not surprisingly, someone (well, more than one someone, actually) has already done this: https://realpython.com/blog/python/django-and-ajax-form-submissions/ or http://stackoverflow.com/questions/14099038/an-easy-way-to-submit-django-forms-using-ajax-jquery or https://aliteralmind.wordpress.com/2

Re: Easiest way to ajax enable django forms

2016-07-14 Thread ludovic coues
A JS library like Jquery or plain javascript. Listen to event, intercept & cancel them, make the query to django, insert or remove the appropriate item. 2016-07-13 20:25 GMT+02:00 J Singh : > I want functionality such as add/delete line items to an order , do not want > a form resubmit every time