3

我想在完整的 rtl 中使用新的(4.x)tinymce。

看看这里http://fiddle.tinymce.com/xwdaab/1

我设置

directionality: "rtl",

但这仅影响输入区域,我希望所有工具栏都与右侧对齐(rtl)

我怎样才能做到这一点?

在旧版本中,我使用的是“高级”主题

theme_advanced_toolbar_align : "right",

谢谢

4

3 回答 3

5

我有同样的问题。我从 plugins 参数中删除了“fullpage”,现在它对我有用。

我改变了这段代码:

plugins: [
                "advlist directionality autolink autosave link image lists charmap print preview hr anchor pagebreak",
                "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking",
                "table contextmenu textcolor paste fullpage textcolor"
        ],

对此:

plugins: [
                "advlist directionality autolink autosave link image lists charmap print preview hr anchor pagebreak",
                "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking",
                "table contextmenu textcolor paste textcolor"
        ], 
于 2014-05-11T19:04:48.587 回答
1

tinymce 4.0.7 > 自动按语言包(rtl 或 ltr)检测工具栏对齐。

看看:http ://www.tinymce.com/forum/viewtopic.php?id=32748

于 2014-01-09T09:06:10.673 回答
0

如果你也想改变插件的方向,你应该用一个带有类的容器包装你的小插件,并在你的代码中写下 css 代码

.containerClass .mce-flow-layout {
    white-space: normal;
    display: flex;
    flex-direction: row-reverse;
}
于 2021-03-30T11:54:50.180 回答