Django + Ajax + Jquery

2010-06-06 Thread tazimk
Hi, I want to use ajax in my templates using jquery. Can someone provide me some sample examples /links related to this. Also some sample examples on using Jquery efficiently -- You received this message because you are subscribed to the Google Groups "Django users" group. To post t

Django + Ajax + Jquery

2010-06-06 Thread tazimk
Hi, I want to use ajax in my templates using jquery. Can someone provide me some sample examples /links related to this. Also some sample examples on using Jquery efficiently -- You received this message because you are subscribed to the Google Groups "Django users" group. To post t

Django+Ajax+jquery

2012-08-03 Thread Rishabh Dixit
Someone please give some solution to this stack overflow question- http://stackoverflow.com/questions/11706721/updating-a-button-value-database-and-call-a-view-function-without-refreshing-th -- You received this message because you are subscribed to the Google Groups "Django users" group. To vi

django ajax jquery

2013-08-15 Thread Scheck Nyori
Hello! I am a noob in web development. Just finished polls tuts. Can anyone give me any insight in using jquery and ajax with django! If possible any tutorial. Any help will be appreciated! Thank you. -- You received this message because you are subscribed to the Google Groups "Django users" gro

Re: Django + Ajax + Jquery

2010-06-06 Thread Horst Gutmann
Django itself doesn't really care what JS framework you use and only offers some framework agnostic helpers within the request object like http://docs.djangoproject.com/en/1.2/ref/request-response/#django.http.HttpRequest.is_ajax to distinguish requests coming as XHRs as well as django.utils.simple

Re: Django + Ajax + Jquery

2010-06-06 Thread Andy Kelley
I'll go ahead and insert a plug here: http://github.com/superjoe30/jst-parser On Jun 6, 12:14 am, tazimk wrote: > Hi, > >     I want to use ajax in my templates using jquery. >     Can someone provide me some sample examples /links related to > this. >     Also some sample examples on using Jque

Re: Django + Ajax + Jquery

2010-06-06 Thread Dmitry Dulepov
Hi! tazimk wrote: > I want to use ajax in my templates using jquery. > Can someone provide me some sample examples /links related to > this. http://www.google.com/ may be? The question is too broad. -- Dmitry Dulepov Twitter: http://twitter.com/dmitryd/ Web: http://dmitry-dulepov.com/

Re: Django + Ajax + Jquery

2010-06-06 Thread Massimiliano della Rovere
This is useful too: http://www.dajaxproject.com/ On Mon, Jun 7, 2010 at 07:57, Dmitry Dulepov wrote: > Hi! > > tazimk wrote: >>     I want to use ajax in my templates using jquery. >>     Can someone provide me some sample examples /links related to >> this. > > http://www.google.com/ may be? The

Re: django ajax jquery

2013-08-15 Thread carlos
Hi maybe you need find in google.com for example http://fromzerotocodehero.blogspot.com/2011/01/django-ajax-tutorial-part-1.html I think there are more tutorials Cheers, On Thu, Aug 15, 2013 at 6:09 AM, Scheck Nyori wrote: > Hello! > I am a noob in web development. Just finished polls tuts.

Django +Ajax + jQuery problem

2020-07-02 Thread Jan Gregorczyk
My problem is that site registers only the first click on .upvote or .downvote element and ignores next ones. {% extends 'base.html' %} {% load votes_exists %} {% block title %}{{question.title|truncatechars:52}}{% endblock %} {% block content %} {{question.title}} {{question.content}} {% for answe

Re: Django +Ajax + jQuery problem

2020-07-03 Thread Andréas Kühne
Hi, The reason for this is that you are replacing the buttons when you update the answer. The event listener that you attached is on the first one and not the second one. You can solve this in 2 ways: 1. Reregister the event listener when you have loaded the answer again. 2. Use a different way t