Re: Any API for dojo/jquery in django template language ?? For dojo i need urgently , thanks

2013-09-17 Thread Nikolas Stevenson-Molnar
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

Any API for dojo/jquery in django template language ?? For dojo i need urgently , thanks

2013-09-16 Thread bab mis
-- 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

Re: Django session and Dojo dnd.

2012-06-07 Thread voss
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/$', &#

Re: Django session and Dojo dnd.

2012-06-07 Thread voss
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

Re: Django session and Dojo dnd.

2012-06-07 Thread Hendrik Speidel
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'),

Re: Django session and Dojo dnd.

2012-06-07 Thread voss
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: >&

Re: Django session and Dojo dnd.

2012-06-07 Thread Hendrik Speidel
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

Re: Django session and Dojo dnd.

2012-06-07 Thread voss
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

Re: Django session and Dojo dnd.

2012-06-05 Thread voss
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

Re: Django session and Dojo dnd.

2012-06-04 Thread henzk
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

Re: Django session and Dojo dnd.

2012-06-04 Thread voss
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

Re: Django session and Dojo dnd.

2012-06-04 Thread voss
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

Re: Django session and Dojo dnd.

2012-06-02 Thread henzk
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

Django session and Dojo dnd.

2012-06-01 Thread voss
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.

Re: Dojo Rich Editor Implementation in Admin.py

2012-05-02 Thread Gchorn
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

Dojo Rich Editor Implementation in Admin.py

2012-04-30 Thread Gchorn
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/

Django-ModelStore: Turn your Django models into Dojo data stores

2009-10-12 Thread BenW
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

Django + Dojo errors

2009-09-07 Thread Jim Myers
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

ModelForm and dojo form validation

2009-07-09 Thread GaRaGeD Style
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

Re: Django and dojo

2009-07-06 Thread Russell Keith-Magee
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

Django and dojo

2009-07-06 Thread Joshua Partogi
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.

Django dojo TextInput always empty

2009-06-09 Thread Guri
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

Re: Dojo widgets inside Django

2009-05-20 Thread Guri
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

Re: Dojo widgets inside Django

2009-05-18 Thread Guri
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 > >

Re: Dojo widgets inside Django

2009-05-18 Thread Alex Gaynor
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

Dojo widgets inside Django

2009-05-18 Thread Guri
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

Re: Django, Dojo and JSON-RPC

2009-04-06 Thread Jani Tiainen
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 (

Re: Django, Dojo and JSON-RPC

2009-04-06 Thread Rob Goedman
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).

Django, Dojo and JSON-RPC

2009-04-06 Thread Jani Tiainen
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

Re: How do i use dojo in my Django application

2009-04-02 Thread Kenneth Gonsalves
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

Re: How do i use dojo in my Django application

2009-04-02 Thread Rob Goedman
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: &

Re: How do i use dojo in my Django application

2009-04-02 Thread Dougal Matthews
#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

Re: How do i use dojo in my Django application

2009-04-02 Thread Briel
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

How do i use dojo in my Django application

2009-04-02 Thread Gath
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

Re: Where to put jquery/dojo js files

2009-03-09 Thread rajeesh
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

Re: Where to put jquery/dojo js files

2009-03-09 Thread Wolfram Kriesing
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

Re: Where to put jquery/dojo js files

2009-03-08 Thread rajeesh
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. --~--~---

Re: Where to put jquery/dojo js files

2009-03-08 Thread Carlos A. Carnero Delgado
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

Where to put jquery/dojo js files

2009-03-08 Thread raj
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

Re: How to use dojo toolkit in django?

2008-07-25 Thread Wolfram Kriesing
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

Re: How to use dojo toolkit in django?

2008-04-29 Thread [EMAIL PROTECTED]
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

Re: How to use dojo toolkit in django?

2008-04-14 Thread bobhaugen
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'

Re: How to use dojo toolkit in django?

2008-04-14 Thread Etienne Robillard
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

Re: How to use dojo toolkit in django?

2008-04-14 Thread Kenneth Gonsalves
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

Re: How to use dojo toolkit in django?

2008-04-14 Thread James Bennett
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

Re: How to use dojo toolkit in django?

2008-04-14 Thread Kenneth Gonsalves
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?

2008-04-14 Thread Duke
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

Re: Dojo LayoutContainer and ContentPane as application frame?

2007-07-31 Thread [EMAIL PROTECTED]
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

Dojo LayoutContainer and ContentPane as application frame?

2007-07-31 Thread [EMAIL PROTECTED]
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

problem with admin look and feel also with dojo

2007-05-23 Thread [EMAIL PROTECTED]
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

Re: Which ajax framework django will support in the upcoming 1.0, prototype/dojo/jquery?

2007-04-12 Thread [EMAIL PROTECTED]
) 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

Re: Which ajax framework django will support in the upcoming 1.0, prototype/dojo/jquery?

2007-04-12 Thread pcad
> 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

Re: Which ajax framework django will support in the upcoming 1.0, prototype/dojo/jquery?

2007-04-12 Thread limodou
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

Re: Which ajax framework django will support in the upcoming 1.0, prototype/dojo/jquery?

2007-04-12 Thread [EMAIL PROTECTED]
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

Re: Which ajax framework django will support in the upcoming 1.0, prototype/dojo/jquery?

2007-04-12 Thread pcad
> 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

Re: Which ajax framework django will support in the upcoming 1.0, prototype/dojo/jquery?

2007-04-10 Thread simonbun
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

Re: Which ajax framework django will support in the upcoming 1.0, prototype/dojo/jquery?

2007-04-10 Thread jfagnani
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

Re: Which ajax framework django will support in the upcoming 1.0, prototype/dojo/jquery?

2007-04-10 Thread Russell Keith-Magee
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

Re: Which ajax framework django will support in the upcoming 1.0, prototype/dojo/jquery?

2007-04-10 Thread Kenneth Gonsalves
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

Re: Which ajax framework django will support in the upcoming 1.0, prototype/dojo/jquery?

2007-04-10 Thread aaloy
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

Re: Which ajax framework django will support in the upcoming 1.0, prototype/dojo/jquery?

2007-04-10 Thread James Bennett
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

Re: Which ajax framework django will support in the upcoming 1.0, prototype/dojo/jquery?

2007-04-10 Thread Todd O'Bryan
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

Re: Which ajax framework django will support in the upcoming 1.0, prototype/dojo/jquery?

2007-04-10 Thread Deryck Hodge
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

Re: Which ajax framework django will support in the upcoming 1.0, prototype/dojo/jquery?

2007-04-10 Thread Steve Bergman
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

Re: Which ajax framework django will support in the upcoming 1.0, prototype/dojo/jquery?

2007-04-10 Thread Adam Findley
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

Re: Which ajax framework django will support in the upcoming 1.0, prototype/dojo/jquery?

2007-04-10 Thread James Bennett
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

Re: Which ajax framework django will support in the upcoming 1.0, prototype/dojo/jquery?

2007-04-10 Thread Marc Fargas Esteve
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

Which ajax framework django will support in the upcoming 1.0, prototype/dojo/jquery?

2007-04-10 Thread erdong ma
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

Re: Parsing XML using dojo

2007-04-09 Thread Benjamin Slavin
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

Parsing XML using dojo

2007-04-08 Thread Gali
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

Re: dojo problem

2007-03-08 Thread Nathan R. Yergler
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

Re: dojo problem

2007-03-07 Thread Mary
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

Re: dojo problem

2007-03-07 Thread Nathan R. Yergler
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','

dojo problem

2007-03-06 Thread Mary
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

Re: passing arguments using dojo

2007-02-27 Thread damacy
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

passing arguments using dojo

2007-02-27 Thread damacy
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

Re: Re: django and dojo, what is the status ?

2006-12-18 Thread James Bennett
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

Re: django and dojo, what is the status ?

2006-12-18 Thread Jacob Kaplan-Moss
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

Re: django and dojo, what is the status ?

2006-12-18 Thread [EMAIL PROTECTED]
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

Re: django and dojo, what is the status ?

2006-12-18 Thread Jacob Kaplan-Moss
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'

Re: django and dojo, what is the status ?

2006-12-18 Thread [EMAIL PROTECTED]
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

Re: django and dojo, what is the status ?

2006-12-18 Thread limodou
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

Re: django and dojo, what is the status ?

2006-12-18 Thread Russell Keith-Magee
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

django and dojo, what is the status ?

2006-12-18 Thread [EMAIL PROTECTED]
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

Re: Dojo vs Mochikit for Django dev?

2006-10-19 Thread Enquest
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

Re: Dojo vs Mochikit for Django dev?

2006-10-18 Thread Andrew
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

Re: Dojo vs Mochikit for Django dev?

2006-10-18 Thread sago
> 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

Re: Dojo vs Mochikit for Django dev?

2006-10-18 Thread sago
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

Re: Dojo vs Mochikit for Django dev?

2006-10-18 Thread comechao
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

Re: Re: Dojo vs Mochikit for Django dev?

2006-10-17 Thread James Bennett
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

Re: Dojo vs Mochikit for Django dev?

2006-10-17 Thread Jeremy Dunck
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

Re: Dojo vs Mochikit for Django dev?

2006-10-17 Thread Cheng Zhang
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

Re: Dojo vs Mochikit for Django dev?

2006-10-17 Thread sago
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

Re: Dojo vs Mochikit for Django dev?

2006-10-17 Thread James Bennett
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

Re: Dojo vs Mochikit for Django dev?

2006-10-17 Thread Panos Laganakos
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

Re: Dojo vs Mochikit for Django dev?

2006-10-17 Thread João Cruz Morais
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

Re: Dojo vs Mochikit for Django dev?

2006-10-17 Thread Wilson Miner
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

Re: Dojo vs Mochikit for Django dev?

2006-10-17 Thread Noah
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

Dojo vs Mochikit for Django dev?

2006-10-17 Thread 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 Cons of either? Thanks Iain --~--~-~--~~~---~--~~ You received this message because you are

Source of Project using dojo and reportlab

2006-10-14 Thread coulix
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   2   >