What do you have in your settings.py?

Make Sure you have the following configs....

TINYMCE_JS_URL (default: settings.MEDIA_URL + 'js/tiny_mce/
tiny_mce.js')
TINYMCE_JS_ROOT (default: settings.MEDIA_ROOT + 'js/tiny_mce')
TINYMCE_DEFAULT_CONFIG (default: {'theme': "simple", 'relative_urls':
False})
TINYMCE_SPELLCHECKER (default: False)
TINYMCE_COMPRESSOR (default: False)
TINYMCE_FILEBROWSER (default: True if 'filebrowser' is in
INSTALLED_APPS, else False)

An Example would be like this........

TINYMCE_JS_URL = 'http://debug.example.org/tiny_mce/tiny_mce_src.js'
TINYMCE_DEFAULT_CONFIG = {
    'plugins': "table,spellchecker,paste,searchreplace",
    'theme': "advanced",
}
TINYMCE_SPELLCHECKER = True
TINYMCE_COMPRESSOR = True

If you do it this way you shouldnt have to set anything in model Admin
every placeholder you call should automatically have widgets. Make
sure you have the correct plugins in TINYMCE_DEFAULT_CONFIG as well. I
tend not to use the compressor or spellchecker. thats just me. try it
by commenting the plugins line out first. Im new to django but i had
problems with tinyMCE and this sorted it. Hope it helps. Sorry if it
does not.

maybe try
http://django-tinymce.googlecode.com/svn/tags/release-1.5/docs/.build/html/installation.html
or letting people know what you have in settings.py

-- 
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.

Reply via email to