Re: jquery integration to django?

2006-11-03 Thread James Bennett
On 11/3/06, Enquest <[EMAIL PROTECTED]> wrote: > What would it take to integrate jquery to Django? > Just like now is happening with Dojo... I think however jquery is a > better lib ... Dojo integration was a fleeting, now-discarded idea. Django will not be "integrating" any JS toolkit. One good

Re: jquery integration to django?

2006-11-03 Thread [EMAIL PROTECTED]
I didn't even do that much. I just called the JS in my template head and went about my business. On the sortable tables example, that's all you'd do... add your script tag and it'll take care of it. Of course, Django will output zebra-striped tables for you pretty easily, too. About the only tim

Re: jquery integration to django?

2006-11-03 Thread olive
It depends on what you mean by integrate ... I'm currently developping a Django/JQuery app and it is desperately easy. All you have to use on a django side is something like this: from django.utils.simplejson import dumps def myView(request): myQuerySet = myFunctionToBuildMyQuerySet(reques

jquery integration to django?

2006-11-03 Thread Enquest
What would it take to integrate jquery to Django? Just like now is happening with Dojo... I think however jquery is a better lib ... Just look at the following example http://jquery.com/blog/2006/10/18/zebra-table-showdown/ --~--~-~--~~~---~--~~ You received thi