问题标签 [tinymce-5]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
tinymce - TinyMCE v5 - 对话框中的 iframe
新的 TinyMCE v5 删除了对对话框中 iframe 的支持,从我所看到的文档中,没有解释原因,也没有解释如何实施替代方案。
我想实现一个自定义图像/文件资源管理器 UI,以允许作者:
- 从图像库中选择现有图像/将新图像上传到图像库,
- 浏览文档库中的现有文档。
如果没有 iframe 来托管这个复杂的 UI,我该如何实现呢?在 v4 中,可以使用 RoxyFileManager。在 v5 中,似乎没有更多了。
tinymce - 将 tinymce 从 4 更新到版本 5 后“无法初始化插件”?
我已经将 tinymce 更新为版本 5,但似乎是由其插件引起的错误。它指的是每个插件,如“advlist/plugin.min.js”
无法初始化插件:advlist 错误:editor.addButton 已在 tinymce 5x 中删除,请改用 editor.ui.registry.addButton 或 editor.ui.registry.addToggleButton 或 editor.ui.registry.addSplitButton
顺便说一句,我正在使用 zendframework 2。
javascript - How to migrate custom buttons and dialogs to TinyMCE 5
I have a third party Bootstrap plugin (probably EOL), which added buttons to the toolbar, which in turn opened a dialog from where I could select Bootstrap elements to add to the content.
It used the following code:
#xA;But it says that Factory is undefined or that create is a non-existing function. What can I use to make this work, to show the buttons as well as showing the dialog on click? I already updated the following code to view bsItems:
#xA;And I tried several other possibilities to find the create function:
#xA;All to no avail
tinymce - 在插入/编辑链接对话框上插入自定义按钮?
我想在 tinymce v5 的插入/编辑链接对话框/弹出窗口上添加一个自定义按钮。
我只得到了设置选项的代码,我在其中调用了一个函数。
tinymce - tinymce 5 上 moxiemanager 允许的图像文件扩展名、doc 和 excel 文件扩展名以及视频文件扩展名是什么?
我在更新的 tinymce 5 社区版中使用了 moxiemanager。我加入了常见的视频扩展名,如 .mov .m4v .avi .flv 和 .swf ,但不允许上传这些扩展名。
tinymce - 如何在版本 5 的 tinymce 中集成 elFinder?
我们得到了一个新版本的 TinyMCE。这是第5个版本。我想在其中集成 elFinder 2。但我不知道怎么做。你会帮忙吗?
我研究了 TinyMCE 第 5 版的文档,但没有找到任何对我有帮助的数据。但是我得到了这个用于集成 elFinder 的代码,它有助于这个目标的一半。
这是我打开 elFinder 的查找代码:
我希望 dbclick 事件会将获得此事件的图像数据放在编辑器中插入图像的窗口中。
javascript - TinyMCE 5 color_map 设置不显示自定义颜色
我需要自定义 TinyMCE 5 颜色选择器中的颜色。在我发现的文档中:
但我不能让它工作:
我的期望是看到一个颜色选择器,它仅由前景文本颜色和背景文本颜色的 3 种颜色组成,但我看到的是标准颜色选择器。为什么 ?
javascript - “响应式文件管理器”插件不起作用”- TinyMCE 5 插件
我为我的英语道歉,但我用谷歌翻译翻译它。
我正在尝试安装“响应式文件管理器”插件(https://www.responsivefilemanager.com/)我根据说明移动了文件并进行了配置。当我按下弹出按钮时,控制台中会弹出一个错误。在此处输入图像描述
“filemanager”目录被转移到“ /admin/wysiwyg/new_tinymce/ ”。在这个目录中有 TinyMCE
“plugins”目录被转移到“ /admin/wysiwyg/new_tinymce/js/tinymce/plugins/ ”。
我将其他文件和目录移动到“ /admin/wysiwyg/new_tinymce/ ”。
这是文件和目录的结构:
我省略了一些不重要的文件和目录。
调用 TinyMce。我特别省略了不必要的条目以使代码更具可读性:
单击文件管理器图标时,错误在控制台中显示我在此处输入图像描述:
javascript - TinyMCE 5.0.6 的文件管理器
我在我的个人项目中安装了 TinyMCE(TinyMCE Dev Package 5.0.6)。一切都已正确安装和配置,但此软件包中没有可用的文件管理器。为了解决这个缺陷,我尝试安装 ResponsiveFileManager (RFM),但它不起作用。单击 RFM 的图标时,控制台中出现错误:
我猜 RFM 没有为这个版本的 TinyMCE 做好适当的准备。
所以我想问一下 TinyMCE 是否有可用的文件管理器插件。我需要一个文件管理器,它能够: - 预览上传的照片, - 创建新目录, - 将文件上传到服务器的目录(也具有拖放功能)。