What exactly do you mean by "ajax-based generic views"? Most often
you'd return a JSON response to an xhr request so instead of passing a
dict as a context object to render_to_response you'd return an HTTP
response with the dict serialized as JSON. Follow any guidelines for
making views generic, but instead of filling the response with a
template rendered as html return the content serialized as JSON.
Simplejson comes with django, Also you can serialize model objects
automatically
http://docs.djangoproject.com/en/dev/topics/serialization/

On Wed, Jul 22, 2009 at 11:36 PM, djangonoob<ye.eug...@gmail.com> wrote:
>
> Hi all, i understand that this is a recurring topic.
> But i couldnt find any ajax-based generic views tutorials/threads,
> etc.
>
> How do we implement ajax-based generic views?
>
> BEst Rgds.
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to