tinymce-bundle
tinymce-bundle copied to clipboard
TinyMCE 6 integration for your Symfony apps and forms
I've encountered a strange bug, not sure if you've come across it. I have two projects, one based on Symfony 6.4.1 and another on Symfony 6.4.4. In the 6.4.1 version,...
First of all: wonderful bundle! Impeccable! I faced an issue not seeing this little upload button, when clicking the image dialog. The setting images_upload_url in tinymce.yaml is existing and set....
Hello, I'm with symfony 7 and i can't get this bundle work. Some js are not loading : GET http://localhost:8882/assets/bundles/tinymce/ext/tinymce/themes/silver/theme.min.js net::ERR_ABORTED 404 (Not Found) GET http://localhost:8882/assets/bundles/tinymce/ext/tinymce/icons/default/icons.min.js net::ERR_ABORTED 404 (Not Found)...
Hello ! I'd like to upload files into Project/public/uploads I took your "file-upload-example.md". but I don't understand what UserUploadStorage is, Here is my form field: ``` ->add('QUESTIONTEXT', TinymceType::class,[ 'label' =>...
Hello, i tried to configure my toolbar. If doing this in the FormType (attr -> toolbar), it works a bit, because I need the link plugin, but this seems not...
Hey, first of all, thank you for this bundle, it works just fine ! This is not a bug report just a topic to understand something. I'm confused, with the...
Hello, I'm trying to unit test a form: ``` use Eckinox\TinymceBundle\Form\Type\TinymceType; ... ->add('description', TinymceType::class, [ 'label' => 'label.description', 'required' => false, ]); ``` In my test i do: ``` $crawler...
Hi, I'm encountering some issues with the TinyMCE plugin. I'm using Ajax to submit the form, but in this case, the underlying textarea is never updated. Additionally, I created a...