Re: Dajax or Jquery

2010-07-13 Thread Kenneth Gonsalves
On Monday 12 July 2010 16:06:14 Imad Elharoussi wrote:
> I want to know what's the best plugin of Ajax to use with django Dajax or
> Jquery (for someone who just began in developping with such technologies)
> 

jquery is a general javascript toolkit. dajax integrates general javascript 
toolkits with django (jquery among them). I suspect you would be best off using 
both.
-- 
Regards
Kenneth Gonsalves
Senior Associate
NRC-FOSS at AU-KBC

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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.



Re: Dajax or Jquery

2010-07-12 Thread CrabbyPete
I never saw Dajax, but after reading I see it supports Jquery. I use
mootools and Jquery and both are great.  Dajax just seem to integrate
them into django a little easier.

On Jul 12, 6:36 am, Imad Elharoussi  wrote:
> Hi,
>
> I want to know what's the best plugin of Ajax to use with django Dajax or
> Jquery (for someone who just began in developping with such technologies)
>
> Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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.



Re: Dajax or Jquery

2010-07-12 Thread David De La Harpe Golden
On 12/07/10 11:36, Imad Elharoussi wrote:
> Hi,
> 
> I want to know what's the best plugin of Ajax to use with django Dajax or
> Jquery (for someone who just began in developping with such technologies)
>

They don't do the same thing?

jquery is a purely client-side javascript toolkit, whereas dajax is an
ajax helper framework for django.

dajax targets jquery as one of the client-side javascript toolkits it
supports for implementing its client-side bits.

So you use dajax with jquery (or dajax+prototype or dajax+mootools or
dajax+dojo).  Of course, dajax's goal is to hide the javascript, so in a
sense you do end up writing less jquery client-side code.

OTOH you don't have to use dajax to do ajax with django if you don't
want to. You might (for argument's sake) feel it does a little "too
much" (thought n.b. you can use "dajaxice" that dajax sits on top on its
own), and roll your own functions on the server side using
django's request.is_ajax() and json serialiser and write your own jquery
(and/or one of the other toolkits) javascript code on the client side.






-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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.



Re: Dajax or Jquery

2010-07-12 Thread Alexander Jeliuc
Hello.
Django community use jquery in contrib/admin - motives - it is fast growing
js framework. I personally use both dojo, jquery and YUI. jQuery is best for
general uses but sometimes is slower then dojo and YUI. Finally it depends
on you and your needs. dajax is good choice.

On Mon, Jul 12, 2010 at 1:36 PM, Imad Elharoussi
wrote:

> Hi,
>
> I want to know what's the best plugin of Ajax to use with django Dajax or
> Jquery (for someone who just began in developping with such technologies)
>
> Thanks
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-us...@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.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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.



Dajax or Jquery

2010-07-12 Thread Imad Elharoussi
Hi,

I want to know what's the best plugin of Ajax to use with django Dajax or
Jquery (for someone who just began in developping with such technologies)

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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.