Re: using ajax with django

2009-10-19 Thread Kenneth Gonsalves
On Monday 19 Oct 2009 4:19:19 pm Jorge Bastida wrote: > > To use ajax you need to be able to make AJAX connections through > > javascript and make your view.py code to return the right format > > depending on the request (html, xml, json). So theres nothing special > > you need to install. > > As

Re: using ajax with django

2009-10-19 Thread Tom Evans
On Mon, 2009-10-19 at 03:41 -0700, neetu wrote: > Thanks a lot. > > Can u tell me how can i make ajax connections. > http://lmgtfy.com/?q=make+ajax+request Cheers Tom --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gro

Re: using ajax with django

2009-10-19 Thread neetu
Thanks jorge On Oct 19, 3:49 pm, Jorge Bastida wrote: > > To use ajax you need to be able to make AJAX connections through > > javascript and make your view.py code to return the right format > > depending on the request (html, xml, json). So theres nothing special > > you need to install. > > A

Re: using ajax with django

2009-10-19 Thread neetu
Thanks a lot. Can u tell me how can i make ajax connections. On Oct 19, 3:24 pm, Antoni Aloy wrote: > 2009/10/19 neetu : > > > Hi All > > > I want to use ajax for my website.I am new to ajax.The backend code > > for my website uses django. > > I want to know the what are the things i need to in

Re: using ajax with django

2009-10-19 Thread Jorge Bastida
> > > To use ajax you need to be able to make AJAX connections through > javascript and make your view.py code to return the right format > depending on the request (html, xml, json). So theres nothing special > you need to install. > As Anton says, you didn't need any special library to use ajax

Re: using ajax with django

2009-10-19 Thread Antoni Aloy
2009/10/19 neetu : > > Hi All > > I want to use ajax for my website.I am new to ajax.The backend code > for my website uses django. > I want to know the what are the things i need to install before using > ajax for my website.should i download and install ajaxcontroltoolkit. > To use ajax you need

using ajax with django

2009-10-19 Thread neetu
Hi All I want to use ajax for my website.I am new to ajax.The backend code for my website uses django. I want to know the what are the things i need to install before using ajax for my website.should i download and install ajaxcontroltoolkit. --~--~-~--~~~---~--~~

Re: Using Ajax with django from different domain and technology

2009-05-22 Thread Dougal Matthews
If everything is going to be hosted on different servers etc. I think you might want to consider using a web service or some sort SOAP or REST. It would provide a common interface to your data that once implemented would be easy to use in many places. This really doesn't have much to do with Djang

Re: Using Ajax with django from different domain and technology

2009-05-21 Thread googletorp
Hi AJAX doesn't care what tech is serving the data as long as the format is what it expects (JSON). Doing cross domain AJAX calls it a bit more tricky, but you can do it with JSONP. It's not hard to setup when you have control of the json output. I know jQuery has it, but try to google it, there a

Using Ajax with django from different domain and technology

2009-05-21 Thread Abhishoka
Hi: We are a non-profit charity organization having 25+ websites and want to maintain a centralized database for the various events happening at different places. The database (MySql) has been implemented and we use the django framework admin module to communicate with the database. Our different