Django-tinymce-filebrowser
Django-tinymce-filebrowser copied to clipboard
Add plugins
How add plugins ? Style, emoticons, text color, print etc ? I search everywhere. But only i can change theme from advanced to simple.
You can specify plugins option in TINYMCE_DEFAULT_CONFIG
See here http://www.tinymce.com/wiki.php/Configuration:plugins
Yea, but where i include this js ? Becouse i dont have any tinymce.init({ }); in tinymce..
In your settings.py
TINYMCE_DEFAULT_CONFIG = {
'plugins': "emotions,table,spellchecker,paste,searchreplace",
'theme': "advanced",
'file_browser_callback': 'mce_filebrowser'
}
It's not work with mce_filebrowser.. If I write 'plugins': ' ', or i write many plugins.. nothing change..
ok, i will check soon
All time I have:
Tnx