You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm on SF 2.8 and I've installed without problem stfalcon/tinymce-bundle
composer require stfalcon/tinymce-bundle='1.0'
then in Kernel : new Stfalcon\Bundle\TinymceBundle\StfalconTinymceBundle(),
Install the assets php app/console assets:install web/
i've set a minimal configuration in app/config/config.yml
I'm on SF 2.8 and I've installed without problem stfalcon/tinymce-bundle
composer require stfalcon/tinymce-bundle='1.0'
then in Kernel :
new Stfalcon\Bundle\TinymceBundle\StfalconTinymceBundle(),
Install the assets
php app/console assets:install web/
i've set a minimal configuration in app/config/config.yml
Then in a template i set :
<textarea class="tinymce"></textarea>
and
I end with the "default" stfalcon/tinymce config ("simple" theme i guess):
This creates the code :
But if i try to override anything in the configuration
i end up with the same buttons appearance :
For instance i want to remove the menubar, and add the template plugin with some templates set : a bare tinymce with just one template button.
in the app/config/config.yml i tried :
in a script in the template
and even in the init callback :
It seems like only the theme simple is used :
the only thing that seems to work is the simple theme
which displays the editor with only the template button, without the menubar
What am doing wrong ?
How to use the advanced config, or any custom config ?
How can i display the template button, and later, display a different configuration for different textareas ?
The text was updated successfully, but these errors were encountered: