django-tinymce icon indicating copy to clipboard operation
django-tinymce copied to clipboard

TinyMCE integration for Django

Results 36 django-tinymce issues
Sort by recently updated
recently updated
newest added

As you may know, the feature has changed a bit in version 6. Kindly check the comment below for details. Thanks to @rsevs3. The outcome is - 1. If using...

updates: - [github.com/pre-commit/pre-commit-hooks: v4.5.0 → v4.6.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.5.0...v4.6.0) - [github.com/psf/black: 24.1.1 → 24.4.2](https://github.com/psf/black/compare/24.1.1...24.4.2)

The django-tinymce documentation doesn't mention using it for [inline editing mode](https://www.tiny.cloud/docs/tinymce/6/use-tinymce-inline/). The only issue I've found about it (#135) was closed as "resolved" but with no info. Is it possible...

How is it possible to create some settings in oreder that the tinymce.init is as the following? ``` tinymce.init({ init_instance_callback: function (editor) { editor.on('blur', function (e) { console.log('Editor was blurred!');...

This PR aims to integrate Tinymce's [cache_suffix](https://www.tiny.cloud/docs/tinymce/latest/editor-important-options/#cache_suffix) parameter into Django-tinymce. The problem: In project deployments it is a common practice to cache static data for long period of time in...

feature

Hi, Maybe this question question has already been answered. I have a site where I have 4 instances of tinyMCE. 3 on pages without tabs are OK. The fourth one...

When I add a new TabularInline row inside the admin panel it doesn't work to instantly add text, I have to save once and then it works

Django===4.2.4 django-tinymce==3.6.1 Also I use django-admin-sortable==2.3, but this problem appears both with SortableTabularInline and TabularInline Model looks like that: ``` class ContentBlock: title = models.CharField(max_length=100) content = HTMLField() ``` Inline...

I don't get the content of the HTMLField if I use this in a dynamically loaded view with HTMX. StackOverflow seems to have already some questions regarding this issue: -...

Hello, i've a problem with safari, when i submit the form it sends to the backend (i use htmx) the old content instead of the new one. same code works...