I want to move my project from jquery to dojo toolkit and I see that there is a dojango project that integrates dojo with django. The instructions are simple enough and I already managed to run the sample project provided. Unfortunately I need to use some custom dojo widgets that I already have made. I don't know how to integrate them in my project.

I found this blog post http://uxebu.com/blog/2008/09/09/dojo-namespacing-with-dojango/ but it is from 2008 and since then many changes are introduced to both django and dojo. That blog post uses many functions that are now deprecated.

Let's assume that my apps directory tree looks like this

├── __init__.py
├── __init__.pyc
├── admin.py
├── models.py
├── models.pyc
├── static
│   └── widgets
│       ├── FloatingWindow.js
│       ├── Taskbar.js
│       ├── css
│       │   ├── floatingwindow.css
│       │   ├── icons
│       │   │   ├── gridcontainer_grip.gif
│       │   │   ├── grip_bg.gif
│       │   │   ├── pixel.gif
│       │   │   ├── resize.png
│       │   │   ├── resizeRtl.png
│       │   │   ├── rotator.png
│       │   │   ├── splitterToggleH.png
│       │   │   └── splitterToggleV.png
│       │   └── taskbar.css
│       ├── images
│       └── templates
│           └── Taskbar.html
├── templates
│   └── index.html
├── tests.py
├── views.py
└── views.pyc

can someone please provide some instructions how to use those custom widgets in a django template?

--
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.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/535263C2.6090504%40yahoo.gr.
For more options, visit https://groups.google.com/d/optout.

Reply via email to