django-tinymce not appearing in admin

2009-08-11 Thread diogobaeder
Hi, I configured django-tinymce extension to work with a model field; It loads all the JavaScript correctly, right after the field, in a script tag, passing the right element ID, but the editor simply doesn't show, only the original textarea is present. Here is a piece of my project where TinyMCE

Re: django-tinymce not appearing in admin

2009-08-11 Thread Kenneth Gonsalves
On Wednesday 12 Aug 2009 11:08:55 am diogobaeder wrote: > I configured django-tinymce extension to work with a model field; It > loads all the JavaScript correctly, right after the field, in a script > tag, passing the right element ID, but the editor simply doesn't show, > only the original texta

Re: django-tinymce not appearing in admin

2009-08-12 Thread diogobaeder
Oops, sorry... it's version 1.1 final. I'll try to create the Media subclass with the media, then, although it's not specified in the django-tinymce use documentation. About dpaste, I'm confused, because in another post I pasted exception content and someone advised me to use dpaste to make the

Re: django-tinymce not appearing in admin

2009-08-12 Thread Karen Tracey
On Wed, Aug 12, 2009 at 12:05 PM, diogobaeder wrote: > > Oops, sorry... it's version 1.1 final. > > I'll try to create the Media subclass with the media, then, although > it's not specified in the django-tinymce use documentation. > > About dpaste, I'm confused, because in another post I pasted e

Re: django-tinymce not appearing in admin

2009-08-12 Thread Kenneth Gonsalves
On Wednesday 12 Aug 2009 9:35:30 pm diogobaeder wrote: > Oops, sorry... it's version 1.1 final. > > I'll try to create the Media subclass with the media, then, although > it's not specified in the django-tinymce use documentation. > > About dpaste, I'm confused, because in another post I pasted ex

Re: django-tinymce not appearing in admin

2009-08-13 Thread diogobaeder
Hehehehe... indeed, it's a curious problem... Well, I'll try to stick to your posting suggestions, then. About the TinyMCE, I'm getting some errors, but it must be some typo somewhere... I'll post the results here when I make the changes. Thanks! Diogo On Aug 12, 9:27 pm, Kenneth Gonsalves

Re: django-tinymce not appearing in admin

2009-08-14 Thread diogobaeder
Kenneth, Setting the Media nested class with the TinyMCE media worked! :-) Thanks for the help, and sorry for the delay to answer your last post. Diogo On Aug 13, 5:28 am, diogobaeder wrote: > Hehehehe... indeed, it's a curious problem... > > Well, I'll try to stick to your posting suggesti

Re: django-tinymce not appearing in admin

2009-08-19 Thread zignorp
Hello, Can you post the example of Setting the Media nested class with the TinyMCE media? I'm in exactly the same place, Thanks, Wendy On Aug 14, 3:15 pm, diogobaeder wrote: > Kenneth, > > Setting the Media nested class with the TinyMCE media worked! :-) > > Thanks for the help, and sorry for th

Re: django-tinymce not appearing in admin

2009-08-19 Thread Kenneth Gonsalves
On Thursday 20 Aug 2009 9:42:33 am zignorp wrote: > Can you post the example of Setting the Media nested class with the > TinyMCE media? > I'm in exactly the same place, class ReportAdmin(admin.ModelAdmin): list_display = ['title','approved'] class Media: js = ('/sitemedia/js

Re: django-tinymce not appearing in admin

2009-08-20 Thread zignorp
Thanks so much, Kenneth, Wendy On Aug 19, 9:22 pm, Kenneth Gonsalves wrote: > On Thursday 20 Aug 2009 9:42:33 am zignorp wrote: > > > Can you post the example of Setting the Media nested class with the > > TinyMCE media? > > I'm in exactly the same place, > > class ReportAdmin(admin.ModelAdmin):