django-tinymce doesn't show formatting toolbar django-tinymce doesn't show formatting toolbar django django

django-tinymce doesn't show formatting toolbar


I have the same problem and same configuration as yours, you should read in browser console.

I get:

Uncaught TypeError: $ is not a function(anonymous function) @ init_tinymce.js:18(anonymous function) @ init_tinymce.js:38

https://github.com/aljosa/django-tinymce/tree/master/tinymce/static/django_tinymceIs made for 1.4-1.7

Edit:

I found a solution to my problem, try and see if it's working for you,edit file init_tinymce.js

# at the begging of the file-(function ($) {+$(document).ready(function() {# at the end-}(django.jQuery));+});

Also you have to comment TINYMCE_COMPRESSOR = True or configure it to False in setting.py .

TINYMCE_COMPRESSOR will throw other js errors if is enabled.