Re: Ajax, jQuery and Django

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer? We can help you in this and related tasks at fair prices. Reply or send email to divy...@pythonmate.com Best Regards, Divyesh Khamele, Pythonmate On Mon, 5 Oct 2020, 1:33 pm Salima Begum, wrote: > Hi all, > I have database of zip code for

Re: Ajax, jQuery and Django

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer? We can help you in this and related tasks at fair prices. Reply or send email to divy...@pythonmate.com Best Regards, Divyesh Khamele, Pythonmate On Mon, 5 Oct 2020, 1:35 pm Salima Begum, wrote: > Hi all, > I have database of zip code for

Re: Ajax, jQuery and Django

2020-10-05 Thread Eugene TUYIZERE
https://simpleisbetterthancomplex.com/tutorial/2018/01/29/how-to-implement-dependent-or-chained-dropdown-list-with-django.html check this also On Mon, 5 Oct 2020 at 11:25, RANGA BHARATH JINKA wrote: > Hi, > > Check this. This may be useful for you. > > All the best > > > https://www.youtube.com

Re: Ajax, jQuery and Django

2020-10-05 Thread RANGA BHARATH JINKA
Hi, Check this. This may be useful for you. All the best https://www.youtube.com/results?search_query=django+dependent+drop+down+list+from+database On Mon, Oct 5, 2020 at 1:56 PM Kunal Solanke wrote: > Rather than sending ajax every time handle it on frontend in javascript > > On Mon, Oct 5,

Re: Ajax, jQuery and Django

2020-10-05 Thread Kunal Solanke
Rather than sending ajax every time handle it on frontend in javascript On Mon, Oct 5, 2020, 13:35 Salima Begum wrote: > Hi all, > I have database of zip code for example, > INSERT INTO pages_zip_code (id, zip, city, st) VALUES > (1, '00501', 'Holtsville', 'NY'), > (2, '00544', 'Holtsville', 'NY

Ajax, jQuery and Django

2020-10-05 Thread Salima Begum
Hi all, I have database of zip code for example, INSERT INTO pages_zip_code (id, zip, city, st) VALUES (1, '00501', 'Holtsville', 'NY'), (2, '00544', 'Holtsville', 'NY'), (3, '00601', 'Adjuntas', 'PR'), (4, '00602', 'Aguada', 'PR'), (5, '00603', 'Aguadilla', 'PR'), (6, '00604', 'Aguadilla', 'PR'),

Ajax, jQuery and Django

2020-10-05 Thread Salima Begum
Hi all, I have database of zip code for example, INSERT INTO pages_zip_code (id, zip, city, st) VALUES (1, '00501', 'Holtsville', 'NY'), (2, '00544', 'Holtsville', 'NY'), (3, '00601', 'Adjuntas', 'PR'), (4, '00602', 'Aguada', 'PR'), (5, '00603', 'Aguadilla', 'PR'), (6, '00604', 'Aguadilla', 'PR'),

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

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

django dependent drop down list without using javascript; ajax; jquery

2020-04-11 Thread Mayank Tripathi
Hi All, Could any one please share some details on how we can do dependent drop down list selection. I am seeing lot of videos or content to handle this via JavaScript; AJAX; jquery etc.. but just wondering if Django has anything which can be handled easily. -- You received this message

Re: Multiple image upload in Django using AJAX & jQuery

2018-06-22 Thread Jani Tiainen
elp. Please! > > > https://stackoverflow.com/questions/50982220/multiple-image-upload-in-django-using-ajax-jquery > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving em

Multiple image upload in Django using AJAX & jQuery

2018-06-22 Thread Keerthan Bhat
Can someone please help me in this? This thing is literally giving me headache from past few weeks. Please help. Please! https://stackoverflow.com/questions/50982220/multiple-image-upload-in-django-using-ajax-jquery -- You received this message because you are subscribed to the Google Groups

Re: Django and AJAX jQuery

2014-09-01 Thread Martin Spasov
Perfect, thank you On 9/1/14, Collin Anderson wrote: > If the url name is not guessable (for example, it includes a secure random > string, like django's forgot password url), that should provide enough > security. > > Though you can always pass in the csrf token using javascript: > https://docs.

Re: Django and AJAX jQuery

2014-09-01 Thread Collin Anderson
If the url name is not guessable (for example, it includes a secure random string, like django's forgot password url), that should provide enough security. Though you can always pass in the csrf token using javascript: https://docs.djangoproject.com/en/dev/ref/contrib/csrf/#ajax -- You receive

Django and AJAX jQuery

2014-09-01 Thread Martin Spasov
I am completely new to AJAX and I was wondering. I have a a view that ajax is posting to but in order for the request to be processed in the view correctly i have to add csrf_exempt decorator to that view, but is that safe? I named the url for that view with a name that would not be guessable,

Re: response to ajax (jquery) with variables

2014-08-31 Thread Antonio Russoniello
s 2014-08-28 2:56 GMT+02:00 Antonio Russoniello mailto:aruss...@musicparticles.com>>: Hello, i hope you can help me with this, I'm trying to send to an ajax (jquery from my html template) a response but i would like to send also a n

Re: response to ajax (jquery) with variables

2014-08-30 Thread Andreas Kuhne
mple > }), > content_type="application/json" > ) > > That would do the trick. This is returned as JSON. Remember to set the > content_type, otherwise the client can get confused. > > Regards, > > Andréas > > 2014-08-28 2:56 GMT+02:00 Antonio Russoniell

Re: response to ajax (jquery) with variables

2014-08-29 Thread Antonio Russoniello
t can get confused. Regards, Andréas 2014-08-28 2:56 GMT+02:00 Antonio Russoniello mailto:aruss...@musicparticles.com>>: Hello, i hope you can help me with this, I'm trying to send to an ajax (jquery from my html template) a response but i would like to send

Re: response to ajax (jquery) with variables

2014-08-29 Thread Antonio Russoniello
is returned as JSON. Remember to set the content_type, otherwise the client can get confused. Regards, Andréas 2014-08-28 2:56 GMT+02:00 Antonio Russoniello mailto:aruss...@musicparticles.com>>: Hello, i hope you can help me with this, I'm trying to send to an ajax (

Re: response to ajax (jquery) with variables

2014-08-28 Thread Andreas Kuhne
ards, Andréas 2014-08-28 2:56 GMT+02:00 Antonio Russoniello : > Hello, > > i hope you can help me with this, I'm trying to send to an ajax (jquery > from my html template) a response but i would like to send also a new > variable. > > in my html template

response to ajax (jquery) with variables

2014-08-27 Thread Antonio Russoniello
Hello, i hope you can help me with this, I'm trying to send to an ajax (jquery from my html template) a response but i would like to send also a new variable. in my html template I have: $("#init_date").click(function(){ var some_date = {'init_date&#x

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

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

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

Re: Ajax/jquery .load() unresponsive via django html templating, or FF/chrome

2012-03-20 Thread Eli_West
Thanks, I think I did read the page that recommends adding a script and did so but no help there. I'll doublecheck but it just seems like there is not very much info on this topic. Is it safe to say that somehow having django templating in the middle is causing xss issues to0? Extra content from .

Re: Ajax/jquery .load() unresponsive via django html templating, or FF/chrome

2012-03-20 Thread Tom Evans
On Mon, Mar 19, 2012 at 6:52 AM, Eli_West wrote: > 2 potential issues I've been trying solve: > > 1) Django csrf or other mechanism is blocking ajax and jquery .load() > > […] Are you following the advice laid out in the Django manual on AJAX And CSRF? Cheers Tom -- You received this message

Ajax/jquery .load() unresponsive via django html templating, or FF/chrome

2012-03-18 Thread Eli_West
2 potential issues I've been trying solve: 1) Django csrf or other mechanism is blocking ajax and jquery .load() This following simple ajax interaction works by opening directly in a browser, but not through a django view: ( assume content to load from namesinfo.htm is available) //

Re: Problem using django and ajax-jQuery

2011-03-07 Thread Daniel Roseman
On Monday, March 7, 2011 3:32:51 PM UTC-8, Rami wrote: > > Thanks Andy! > > 1- you were correct about the form submitting the get method. > > 2- As you mentioned, the when I change the if statement to > "request.GET.has_key('ajax')", it gets executed. the "?ajax" apparently > causes the statemen

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

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 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 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

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

Re: Re: Ajax Jquery

2006-10-04 Thread James Bennett
On 9/29/06, patrickk <[EMAIL PROTECTED]> wrote: > however, I´ve been a little bit disappointed at first that django > doesn´t come with a js-library and that the django-developers refused > to agree on a js-framework. It isn't that there's a "refusal to agree", it's that there's a recognition tha

Re: Re: Ajax Jquery

2006-10-04 Thread Brandon Aaron
On 9/29/06, patrickk <[EMAIL PROTECTED]> wrote: > well, this is not really a question. > however, I´ve been a little bit disappointed at first that django > doesn´t come with a js-library and that the django-developers refused > to agree on a js-framework. > in the meantime, I totally understand t

Re: Ajax Jquery

2006-09-29 Thread limodou
On 9/30/06, patrickk <[EMAIL PROTECTED]> wrote: > > > Am 29.09.2006 um 18:35 schrieb Onno Timmerman: > > > > > Hello, > > > > I started to learn Django this week and have a lot of questions. My > > background is PHP. > > I hope to save time with Django and be able to do more. > > > > My first ques

Re: Ajax Jquery

2006-09-29 Thread Kenneth Gonsalves
On 29-Sep-06, at 10:05 PM, Onno Timmerman wrote: > Are there books about Django, and what books do you recomend to get me > up to speed with Python! python in a nutshell - o'reilly -- regards kg http://lawgon.livejournal.com http://nrcfosshelpline.in/web/ --~--~-~--~~-

Re: Ajax Jquery

2006-09-29 Thread Russell Keith-Magee
On 9/30/06, Onno Timmerman <[EMAIL PROTECTED]> wrote: > > Second questions: > Are there books about Django, and what books do you recomend to get me > up to speed with Python! www.diveintopython.org is one of the best Python primers I know of. It's also available in dead tree version. As for D

Re: Ajax Jquery

2006-09-29 Thread patrickk
Am 29.09.2006 um 18:35 schrieb Onno Timmerman: > > Hello, > > I started to learn Django this week and have a lot of questions. My > background is PHP. > I hope to save time with Django and be able to do more. > > My first question: > Many frameworks are working with a ajax framework. I realy lik

Re: Ajax Jquery

2006-09-29 Thread charles sibbald
book on python www.thinkpython.comOnno Timmerman <[EMAIL PROTECTED]> wrote: Hello,I started to learn Django this week and have a lot of questions. My background is PHP.I hope to save time with Django and be able to do more.My first question:Many frameworks are working with a ajax framework. I realy

Ajax Jquery

2006-09-29 Thread Onno Timmerman
Hello, I started to learn Django this week and have a lot of questions. My background is PHP. I hope to save time with Django and be able to do more. My first question: Many frameworks are working with a ajax framework. I realy like Jquery.com... It's easy and very intiutive, the same philosop