I'm not sure I understand your question. You can use jQuery and/or Dojo
in your Django template the same as you would anywhere else. If you want
nice integration between Django forms and Dojo dijits, you might be
interested in Dojango: https://github.com/klipstein/dojango/
_Nik
On 9/16/2013
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
V
w created a test project and it's working here. The project is
> called 'testp' and the app is called 'testa'
>
> #testp.urls
> from django.conf.urls import patterns, include, url
>
> urlpatterns = patterns('',
> url(r'^dojo/$',
blem. When using
> csrf_exempt you do not need to include the csrf token.
>
> I have now created a test project and it's working here. The project is
> called 'testp' and the app is called 'testa'
>
> #testp.urls
> from django.conf.ur
called 'testp' and the app is called 'testa'
#testp.urls
from django.conf.urls import patterns, include, url
urlpatterns = patterns('',
url(r'^dojo/$', 'testa.views.dojo'),
url(r'^test/$', 'testa.views.new_session'),
s similar to that before the csrf_exempt decorator
> was added, which suggests to me that the problem may not be in the csrf
> protection. Am I right? Any thoughts would be greatly appreciated!
>
> voss
>
>
> On Monday, June 4, 2012 8:21:15 PM UTC-5, henzk wrote:
>&
mend that.
There is a script at
https://docs.djangoproject.com/en/dev/ref/contrib/csrf/
<https://docs.djangoproject.com/en/dev/ref/contrib/csrf/>
To use the script with dojo instead of jquery, you will need to
adapt it a little:
-copy the getCookie function to your co
forgot about django's CSRF protection.
> You can use the csrf_exempt decorator on the view function to disable
> django's CSRF protection - however, i wouldn't recommend that.
>
> There is a script at
> https://docs.djangoproject.com/en/dev/ref/contrib/csrf/
> To
jango's CSRF protection - however, i wouldn't recommend that.
>
> There is a script at
> https://docs.djangoproject.com/en/dev/ref/contrib/csrf/
> To use the script with dojo instead of jquery, you will need to adapt it a
> little:
>
> -copy the getCookie function to you
Hi Voss,
i forgot about django's CSRF protection.
You can use the csrf_exempt decorator on the view function to disable
django's CSRF protection - however, i wouldn't recommend that.
There is a script at https://docs.djangoproject.com/en/dev/ref/contrib/csrf/
To use the s
0")
Thank you!
voss
On Saturday, June 2, 2012 8:46:38 AM UTC-5, henzk wrote:
>
> Hi,
>
> i haven't tested the code and never used dojo before, but sth. like
> this should work:
>
> var source1 = new dojo.dnd.Source("itemListNode");
&g
tpResponse(request.session['key'])
I've also tried "return HttpResponse('ok')", but the 'ok' still didn't get
passed to the load function. What do I do wrong? Any hints would be much
appreciated!
voss
On Saturday, June 2, 2012 8:46:38 A
Hi,
i haven't tested the code and never used dojo before, but sth. like
this should work:
var source1 = new dojo.dnd.Source("itemListNode");
var source2 = new dojo.dnd.Target("selectedListNode");
dojo.connect( source1, "onDndDrop",
function(source, nod
I have a Dojo drag-and-drop and hope to store the dropped items and their
information in a Django session. Using the example below, how do I pass
"detail" in this code to a view so that the dropped info can be stored in a
session?
Thank you!
var source1 = new dojo.
7;photos/%Y/%m/%d')
caption = models.CharField(max_length=1000,blank=True)
I've been trying to implement the Dojo rich editor in my admin site by
following the example here:
http://lazutkin.com/blog/2011/mar/13/using-dojo-rich-editor-djangos-admin/
However, there's some kind of inte
Hi All,
I'm building a blog, with models "Post" and "Image" (each blog post can
have multiple images; they're related by ForeignKey) and I'm trying to
implement the Dojo rich editor in my admin site by following the example
here:
https://gist.github.com/
I've been working on a reusable app to easily serialize my Django
models into JSON data that can be used in Dojo data stores.
The result is a set of classes that allow you to define a Store nearly
the same as you define a Model or a Form. It also includes a JSON-RPC
v1.1 service m
Hi,
I'm using this code to create a response to an Ajax GET from a Dojo
html page:
@json_response
def index_json(request):
ret = {'data': [dict(name='Gary', age='24'),
dict(name='Shane', age='29')]}
return ret
This question applies to any other JavaScript validation tool, but I'm doing
an app that uses dojo, and i'm trying to put client-side validation smartly,
but obviously not achieving it :)
Is there any way to add extra fields to the form's HTML created by ModelForm
??
I'm
On Mon, Jul 6, 2009 at 8:38 PM, Joshua Partogi wrote:
> Dear all,
>
> Not trying to flame here, but I've just read Jacob's post here:
> http://article.gmane.org/gmane.comp.web.dojo.user/3603
>
> What made django developers changed their mind not to bundle dojo in 1.0
Dear all,
Not trying to flame here, but I've just read Jacob's post here:
http://article.gmane.org/gmane.comp.web.dojo.user/3603
What made django developers changed their mind not to bundle dojo in 1.0 ?
Is there any history to that?
Kind regards,
--
Join Scrum8.com.
http://blog.
Hi,
I have a form with two TextInput fields
link_name and tag_list. Form is submitted using dojoType button
Save
Problem is after submit both TextInput fields remain empty and django
raises required field true exception.
Is there any problem with dojo submit button or something wrong in
at should be
> done to display
> dojowidgets for TextInput and other form fields.
>
> ~Guri
>
oh... That was naive ... anyway may help someone else.
Just pass all the required dojo attributes like dojoType,trim ..etc as
dictionary to
forms.widgets.TextInput(attrs_dict=your_dic
On May 19, 12:27 am, Alex Gaynor wrote:
> On Mon, May 18, 2009 at 2:04 PM, Guri wrote:
>
> > Hi,
> > Is there are way to use Dojo widgets inside Django forms.py?
>
> > Any package, pointers or procedure will help.
>
> > Thanks In Advance
> >
On Mon, May 18, 2009 at 2:04 PM, Guri wrote:
>
> Hi,
> Is there are way to use Dojo widgets inside Django forms.py?
>
> Any package, pointers or procedure will help.
>
> Thanks In Advance
> ~Guri
> >
>
http://code.google.com/p/dojango/ aims to do just
Hi,
Is there are way to use Dojo widgets inside Django forms.py?
Any package, pointers or procedure will help.
Thanks In Advance
~Guri
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users&q
Top posting is not my favorite one.
I'm using Dojo JSON-RPC service. Previously with PHP + Zend I got almost
automated JSON-RPC server + SMD generation.
I'm using dojo.rpc.JsonService to for example save and retrieve data in
Web 2.0 manner. Works great. I found nice solution with (
Jani,
Not sure what you are trying to achieve. Wolfram suggested below
solution to me a while ago and I'm happy with it.
Rob
On Apr 6, 2009, at 3:14 AM, Jani Tiainen wrote:
>
> I've been trying to find out nice solution to handle JSON-RPC with
> Django and Dojo (Dojango).
I've been trying to find out nice solution to handle JSON-RPC with
Django and Dojo (Dojango).
So far not much avail. Has anyone succeeded with this? Care to share
what kind of packages do I need to make it working with preferably
automated SMD generations.
--
Jani Ti
On Thursday 02 April 2009 18:20:27 Gath wrote:
> have downloaded Dojo 1.3, i want to start sampling some examples in
> the Dojo website using Django, where do i place the package? How do i
> call it in my template?
a template is just html - put dojo where you put your other css and
Gath,
Attached at the end of this email an exchange from a few months back
about Dojo & Django using the dojango application.
I've been using this and have been happy with it.
http://code.google.com/p/dojango/
Rob
On Apr 2, 2009, at 7:55 AM, Dougal Matthews wrote:
&
#x27;s the case then you will want to decide how you are going to pass
data. You can then just make your views return the appropriate data, be that
chunks of HTML, JSON or XML etc.
Dougal
---
Dougal Matthews - @d0ugal
http://www.dougalmatthews.com/
2009/4/2 Gath
>
> All,
>
> I ha
Hi.
The docs explain in great detail how you can serve static files like
the
dojo library. Take a look at it here:
http://docs.djangoproject.com/en/dev/howto/static-files/
~Jakob
On 2 Apr., 14:50, Gath wrote:
> All,
>
> I have downloaded Dojo 1.3, i want to start sampling some exa
All,
I have downloaded Dojo 1.3, i want to start sampling some examples in
the Dojo website using Django, where do i place the package? How do i
call it in my template?
Gath
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
helps you to use the
> client-side framework dojo within your django project.
>
> * It provides capabilites to easily switch between several dojo
> versions and sources (e.g. aol, google, local)
> * Delivers helping utilities, that makes the development of rich
> internet applicat
Did you try dojango? http://code.google.com/p/dojango/
Dojango is a reusable django application that helps you to use the
client-side framework dojo within your django project.
* It provides capabilites to easily switch between several dojo
versions and sources (e.g. aol, google, local
Yes, It worked. A l'll worried over their caution not to use it in
production. Never mind if we use Apache or something else. Thanks
Carlos.
> Have you looked
> athttp://docs.djangoproject.com/en/dev/howto/static-files/?from=olddocs?
> Maybe it helps...
>
> Regards,
> Carlos.
--~--~---
Hi there,
On Sun, Mar 8, 2009 at 2:32 PM, raj wrote:
> This causes a js error, stating no dojo is defined. Similar error is
> raised for jquery also. What went wrong with the above code?
Have you looked at
http://docs.djangoproject.com/en/dev/howto/static-files/?from=olddocs?
Maybe it
y custom made change_form.html to include the following lines:
{% block extrahead %}{{ block.super }}
group = dojo.byId('id_receipts-0-group');
alert(group);
{% endblock %}
This causes a js error, stating no dojo is defined. Similar error is
rais
Hi,
I remembered seeing this topic mentioned here,
and now there is a solution to it. http://code.google.com/p/dojango/
A quick summary of the main features of dojango:
* a reusable django app that provides dojo
* easy dojo setup inside django
* build an optimized dojo
* some
I've also been looking at Dojo lately. Of the javascript frameworks
I've looked over, it appears to have the best combination of
abstraction and features (feel free to offer alternatives). I've tried
to get the dojox.Grid thing working but have so far failed to do so.
Serializing
On Mon, 14 Apr 2008 00:13:35 -0700 (PDT)
Duke <[EMAIL PROTECTED]> wrote:
> Where to store the dojo toolkit in the project
You can avoid all of the static files issues with dojo by serving it
from AOL, like so:
http://o.aolcdn.com/dojo/1.1.0/</a>
dojo/dojo.xd.js">
I'
On Mon, 14 Apr 2008 00:13:35 -0700 (PDT)
Duke <[EMAIL PROTECTED]> wrote:
>
> How to use dojo toolkit in django project?
> Where to store the dojo toolkit in the project and how to use them in
> the html page?
>
http://code.djangoproject.com/wiki/AJAX/Dojo/RefactoredFor
On 14-Apr-08, at 2:02 PM, Kenneth Gonsalves wrote:
>> How to use dojo toolkit in django project?
>> Where to store the dojo toolkit in the project and how to use them in
>> the html page?
>
> http://www.djangoproject.com/documentation/serialization/
sorry - that is for
On Mon, Apr 14, 2008 at 2:13 AM, Duke <[EMAIL PROTECTED]> wrote:
> Where to store the dojo toolkit in the project
The same place you put all other CSS stylesheets, JavaScript, images
and other static files. Similarly, they will be served the same way.
There is specific documentation
On 14-Apr-08, at 12:43 PM, Duke wrote:
> How to use dojo toolkit in django project?
> Where to store the dojo toolkit in the project and how to use them in
> the html page?
http://www.djangoproject.com/documentation/serialization/
--
regards
kg
http://lawgon.livejournal
How to use dojo toolkit in django project?
Where to store the dojo toolkit in the project and how to use them in
the html page?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To po
o setup a kind of frame architecture with the dojo layout
> container widget.
> The idea is to load the menu (fisheye widget menu) only once and let
> the django page itself load asynchronously into a ContentPane.
> A dojo menu widget loads an url in the content pane like this:
>
&g
Hello Group,
I tried to setup a kind of frame architecture with the dojo layout
container widget.
The idea is to load the menu (fisheye widget menu) only once and let
the django page itself load asynchronously into a ContentPane.
A dojo menu widget loads an url in the content pane like this
e above
changes to httpd.conf. if it was unauthorized then how come it went
missing after these changes and if i comment above changes it still
shows 404 instead of 401.
i have also have dojo installed and when i called dojo without any
changes to httpd.conf it was showing 401. now after those changes it
)
On Apr 12, 1:34 pm, "pcad" <[EMAIL PROTECTED]> wrote:
> > I like jQuery. You like mochikit. Others like YUI, or Prototype, or
> > Dojo. Who's right? Everybody. Nobody. It depends.
>
> I probably shouldn't have brought mochikit into it:) I like it, true
> I like jQuery. You like mochikit. Others like YUI, or Prototype, or
> Dojo. Who's right? Everybody. Nobody. It depends.
I probably shouldn't have brought mochikit into it:) I like it, true
enough, but I'd actually be happy to abandon it if there was some
strong b
ct
> easily. HOW you connect is up to you.
>
> I like jQuery. You like mochikit. Others like YUI, or Prototype, or
> Dojo. Who's right? Everybody. Nobody. It depends.
>
Goog point! I like jQuery also.
--
I like python!
UliPad <>: http://wiki.woodpecker.org
ke YUI, or Prototype, or
Dojo. Who's right? Everybody. Nobody. It depends.
On Apr 12, 9:02 am, "pcad" <[EMAIL PROTECTED]> wrote:
> > thread when I first came to Django. In hindsight, it was pure
> > inability to write the javascript myself, and reluctance to pro
> thread when I first came to Django. In hindsight, it was pure
> inability to write the javascript myself, and reluctance to properly
> learn javascript. In the end I've seen that writing javascript
> manually results in much cleaner html output, using less code and it
> sometimes just performs b
I think that most people that ask for "ajax integration" want to see
javascript helpers, as seen in many other frameworks. They're looking
for things like for example {% auto_complete_tag .. params ..%}; wich
would render an input box with the necessary javascript (inline..)
that makes it autocomp
On Apr 10, 11:39 am, "Todd O'Bryan" <[EMAIL PROTECTED]> wrote:
> On Tue, 2007-04-10 at 18:11 +, Steve Bergman wrote:
> > But Django definitely has a preferred ORM and a preferred templating
> > engine. Why be so set on complete agnosticism when it comes to
> > javascript?
>
> I agree. I don
On 4/11/07, Adam Findley <[EMAIL PROTECTED]> wrote:
>
> I like the idea that Django is AJAX implementation agnostic the same way
> it is agnostic to the database you prefer to back your project (if any),
> but, is there any work being done to create something in contrib to
> facilitate working wit
On 10-Apr-07, at 11:41 PM, Steve Bergman wrote:
> But Django definitely has a preferred ORM and a preferred templating
> engine. Why be so set on complete agnosticism when it comes to
> javascript?
then, to complete your analogy, they would have to write and maintain
their own javascript too
2007/4/10, James Bennett <[EMAIL PROTECTED]>:
>
>
> Again, it's not terribly hard to write views which return JSON or XML;
> integration with form widgets, etc. requires binding to a specific JS
> library or rolling our own, and that's not going to happen.
>
With Django is terribly easy to do tha
On 4/10/07, Steve Bergman <[EMAIL PROTECTED]> wrote:
> Even after the developer decides upon a javascript library to use,
> there is still a lot of boilerplate involved to do common things like
> populating one widget based upon what the user selects in another
> widget. I often need to populate
On Tue, 2007-04-10 at 18:11 +, Steve Bergman wrote:
> But Django definitely has a preferred ORM and a preferred templating
> engine. Why be so set on complete agnosticism when it comes to
> javascript?
>
I agree. I don't have time to weigh the benefits of various libraries.
As someone mentio
On 4/10/07, Steve Bergman <[EMAIL PROTECTED]> wrote:
> And, OK, I'll fess up and say that I want to think in python and not
> have to switch gears back and forth between python and javascript. ;-)
To me, for all the other arguments people make, this is the real
issue: wanting to avoid writing Jav
To me, that does not seem very DRY.
Even after the developer decides upon a javascript library to use,
there is still a lot of boilerplate involved to do common things like
populating one widget based upon what the user selects in another
widget. I often need to populate one widget based upon w
James Bennett wrote:
> On 4/10/07, erdong ma <[EMAIL PROTECTED]> wrote:
>> I do not know if a decision has been made on the ajax framework in 1.0.
>
> Django will not bundle any JavaScript library or provide integration
> hooks with any specific library; Django will continue to make it easy
> to
On 4/10/07, erdong ma <[EMAIL PROTECTED]> wrote:
> I do not know if a decision has been made on the ajax framework in 1.0.
Django will not bundle any JavaScript library or provide integration
hooks with any specific library; Django will continue to make it easy
to receive AJAX requests and send s
Hi Erdong,
If you do a simple search for "AJAX" on this group you'll find the answer
you're looking for, in brief: Django **will not** advocate for a specific
ajax framework/library it provides useful tools to ease your development i.e.
Serializers but as jacob sais a few days ago: "why should you
I do not know if a decision has been made on the ajax framework in 1.0.
Anyone knows some message about this.
By the way, how about the Eclipse + pydev comparing with the Wing IDE?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Goo
Gali,
This really has nothing to do with Django, so this is not the right
place to ask.
The answer you're looking for might be in the dojo documentation at
http://dojotoolkit.org/docs/book.
If that doesn't work you could check-out their forums
http://dojotoolkit.org/forum
- Ben
ho to parsre XML using dojo in an ajax-enabled application? I have an
XML as the response. I need to parse it and displat it on the client
side.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users&q
On 3/7/07, Mary <[EMAIL PROTECTED]> wrote:
>
> I have really tried with dojo and i worked with this steops exactly
> http://code.djangoproject.com/wiki/AddDojoEditor
> and i didn't see anything in my text Area field
>
> I have django 0.95.1 i have installed dojo 0.4
I have really tried with dojo and i worked with this steops exactly
http://code.djangoproject.com/wiki/AddDojoEditor
and i didn't see anything in my text Area field
I have django 0.95.1 i have installed dojo 0.4
Can anyone help please as i spent a lot of time to know what is the
problem
On 3/6/07, Mary <[EMAIL PROTECTED]> wrote:
>
> here is my model :
> text = models.TextField(help_text='Rich Text Editing.')
> class Admin:
> js = ['js/admin/AddRichTextEditing.js']
>
> list_display = ('title','
here is my model :
text = models.TextField(help_text='Rich Text Editing.')
class Admin:
js = ['js/admin/AddRichTextEditing.js']
list_display = ('title','owner','time_created')
i have added the dojo folder in my media f
oh, just got another reply from my last post. thanks mae.
On Feb 28, 12:19 pm, "damacy" <[EMAIL PROTECTED]> wrote:
> hi, there.
>
> i have a problem here as explained below;
> i have a django variable that is to be passed to the views.py as an
> argument.
>
> first of all, i am trying to assign a
hi, there.
i have a problem here as explained below;
i have a django variable that is to be passed to the views.py as an
argument.
first of all, i am trying to assign a django variable within
On 12/18/06, Jacob Kaplan-Moss <[EMAIL PROTECTED]> wrote:
> At one point, I thought about using Dojo for some improvements in Django's
> admin interface; this would have meant such an inclusion. To make a long
> story short... it didn't really work :)
Yeah, and my sh
ge anything about whether I would use django(that depends
> on the kind of project, right tool for the right task) but do remind me
> that if my particular project may call for django/dojo interaction, I
> have to think it twice.
What I'm really trying to say is this: please don't
of project, right tool for the right task) but do remind me
that if my particular project may call for django/dojo interaction, I
have to think it twice.
Jacob Kaplan-Moss wrote:
> At one point, I thought about using Dojo for some improvements in Django's
> admin interface; this wou
On 12/18/06 3:11 AM, Russell Keith-Magee wrote:
> On 12/18/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>> I googled and found some messages/blogs that dojo is supposed to be
>> included in django 0.92 yet I failed to find it in the 0.95 release.
>
> I don'
thanks,
this is what I googled which made me confused.
http://article.gmane.org/gmane.comp.web.dojo.user/3603
Russell Keith-Magee wrote:
> On 12/18/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> >
> > I googled and found some messages/blogs that dojo is supposed
On 12/18/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> I googled and found some messages/blogs that dojo is supposed to be
> included in django 0.92 yet I failed to find it in the 0.95 release.
>
> Does anyone know the status of it ?
>
> regards
>
>
You wo
On 12/18/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> I googled and found some messages/blogs that dojo is supposed to be
> included in django 0.92 yet I failed to find it in the 0.95 release.
I don't know where you read that, but Dojo is _not_ going to be
included i
I googled and found some messages/blogs that dojo is supposed to be
included in django 0.92 yet I failed to find it in the 0.95 release.
Does anyone know the status of it ?
regards
--~--~-~--~~~---~--~~
You received this message because you are subscribed to
I would certainly look at jquery.com ! it's amazing
Op di, 17-10-2006 te 11:53 -0700, schreef iain duncan:
> I have not dug into either Dojo or Mochikit yet and am wondering if one
> is more suited to Django dev than the other for adding AJAX type bells
> and whistles. Pros and
We use mochikit exclusively after playing with Dojo (it slowed our page
loads way down for some reason). Mochikit doesn't give you components
like Dojo does, nor does it give you any of the object-oriented scope
tools that Dojo has, but the documentation is top notch. Mochikit also
give
> On the other hand, its 'effects' module is entirely a red-herring,
> providing only 'curved borders'.
Its called 'visual', and it now provides some simple animations too -
sorry, I haven't checked it out for a while.
--~--~-~--~~~---~--~~
You received this messa
I haven't used this shell. I guess because I've been mostly using
MochiKit anyways, I didn't go hunting for an alternative interpreter.
Just trying it, the shell 1.4 gives me an object error javascript alert
(and no evaluation) on everything I type in IE6.1 (fine on Firefox).
I'd say you are mis
jQuery rocks. Light, powerfull and gd effects . YUI its nice, good
dialogs and calendar.
jQuery example:
$("p.surprise").addClass("ohmy").show("slow");
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django us
On 10/17/06, Jeremy Dunck <[EMAIL PROTECTED]> wrote:
> You know about Ruderman's shell, right? What's the interactive
> interpreter do that the shell doesn't? The shell bookmarklet works in
> the context of whatever page you were on when you opened it. Am I
> missing something cool?
Interactiv
On 10/17/06, sago <[EMAIL PROTECTED]> wrote:
> IMHO MochiKit's interactive interpreter is an absolute
> godsend to serious javascript development, and I find I can't do
> without some of MochiKit for anything other than trivial javascript
> coding.
You know about Ruderman's shell, right? What's
On Oct 18, 2006, at 2:53 AM, iain duncan wrote:
> I have not dug into either Dojo or Mochikit yet and am wondering if
> one
> is more suited to Django dev than the other for adding AJAX type bells
> and whistles. Pros and Cons of either?
Recently we ran into JQuery [1], a v
I've used both MochiKit and Scriptaculous in Django production
projects.
I've only used Dojo in test projects. I've never used YUI.
MochiKit is (pretty uniquely) focussed on providing programming
features, rather than wiz-bang Web2.0 functionality. It does things
like add e
On 10/17/06, iain duncan <[EMAIL PROTECTED]> wrote:
> I have not dug into either Dojo or Mochikit yet and am wondering if one
> is more suited to Django dev than the other for adding AJAX type bells
> and whistles. Pros and Cons of either?
I don't know a whole lot about Moch
You might wanna give a look at http://script.aculo.us/
I've used it outside of Django and was pretty satisfied.
On Oct 18, 3:18 am, João Cruz Morais <[EMAIL PROTECTED]> wrote:
> I suggest using prototype or the smaller/limited version, mooflex.
>
> João
>
> Wilso
I suggest using prototype or the smaller/limited version, mooflex.
João
Wilson Miner wrote:
> Dojo is designed to be flexible, but can be too heavyweight for small
> tasks. Mochikit is designed to be super-lightweight but has a much
> more limited scope as far as what it's capab
Dojo is designed to be flexible, but can be too heavyweight for small
tasks. Mochikit is designed to be super-lightweight but has a much
more limited scope as far as what it's capable of.
On 10/17/06, iain duncan <[EMAIL PROTECTED]> wrote:
>
> I have not dug into either Dojo or
I can't say for sure but I imagine the answer you're going to get from
most people is to use whichever one you like. Since they aren't going
to communicate with Django over a special API but rather through the
same methods they would if you were using any other setup for
development you're pretty
I have not dug into either Dojo or Mochikit yet and am wondering if one
is more suited to Django dev than the other for adding AJAX type bells
and whistles. Pros and Cons of either?
Thanks
Iain
--~--~-~--~~~---~--~~
You received this message because you are
Hello,
I have to do a comparison between Java EE and what ever framework i
like for a simple student report system.
I started by Django since i dont know anything about java EE, and here
is the result.
To see it working
http://www.coulix.net/demo
Sources
http://www.coulix.net/projects/student-re
1 - 100 of 121 matches
Mail list logo