Ajax replacement in django

2011-10-12 Thread lankesh87
Hello, I am developing a web application where i need ajax like features. But I don't want to use ajax, so my question is- "is there any way to perform ajax like functions in django?" -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to t

Re: Ajax replacement in django

2011-10-12 Thread lankesh87
ns as i am new to django and web but i do have some basic knowledge on how html functions. On Oct 12, 7:24 pm, Javier Guerra Giraldez wrote: > On Wed, Oct 12, 2011 at 9:17 AM, lankesh87 wrote: > >  I am developing a web application where i need ajax like features. > > But I don&

Re: Ajax replacement in django

2011-10-12 Thread lankesh87
11 10:55 PM, "Donald Stufft" wrote: > > > > > > > > >  I don't think there's any reason to insult anyone, let's be civil. > > > On Wednesday, October 12, 2011 at 10:50 AM, Chandrakant Kumar wrote: > > > You are another 'garbage&#

Re: Ajax replacement in django

2011-10-12 Thread lankesh87
> > wrote: > > > On Wed, Oct 12, 2011 at 9:17 AM, lankesh87 wrote: > > >>  I am developing a web application where i need ajax like features. > > >> But I don't want to use ajax, so my question is- "is there any way to > > >> perform

Re: Ajax replacement in django

2011-10-12 Thread lankesh87
e page degrades gracefully for those not > running javascript? > > On Wed, Oct 12, 2011 at 11:40 AM, Tom Evans wrote: > > > > > > > > > On Wed, Oct 12, 2011 at 3:24 PM, Javier Guerra Giraldez > > wrote: > > > On Wed, Oct 12, 2011 at 9:17 AM, lankesh8

How to handle callback urls

2011-12-23 Thread lankesh87
Hi, I am trying to handle a callback url. Following is the code in my urls.py file: -- urls.py:- -- from django.conf.urls.defau

Re: How to handle callback urls

2011-12-23 Thread lankesh87
tatus' : 'This was tweeted from a Python application' })) #print resp #print content return HttpResponse('Tweeted!')

selecting single column from models

2011-12-24 Thread lankesh87
I am using sqlite3 as db and in django i want to use values from table. For e.g Customer table has value customer_id, customer_handle, token_auth_key,token_sec_key. my query in views.py is: x = Customer.objects.all(

Re: selecting single column from models

2011-12-24 Thread lankesh87
-- {% for x in bb %} {{ x }} {% endfor %} --- thanks in advance On Dec 25, 3:47 am, lankesh87 wrote: > I am using sqlite3 as db and in django i want to use values from > table

Re: selecting single column from models

2011-12-24 Thread lankesh87
%} --- On Dec 25, 4:52 am, lankesh87 wrote: > Well i have solved the problem now I need to seperate the string: > > this is t

Creating clean URLS

2012-01-01 Thread lankesh87
I want my url to be free from parameters being passed. I have handled the request in "twitter_after_auth" function of view and I am redirecting user to the new url "http://localhost/create_cr/"; but instead the url shows some additional parameters that I have already handled. something like bel

Re: Creating clean URLS

2012-01-02 Thread lankesh87
is url contains html forms for cr registration #but it has the url problem i have mentioned def create_cr(request): return render_to_response('register_cr.html') ------ O