如何更改Django-CKEditor的最大高度并添加滚动?

时间:2019-02-25 21:14:26

标签: django django-ckeditor

我无法设置最大职业高度,它会无限增加其高度,我只是添加了一个插件来添加代码及其依赖项。

settings.py文件中的我的设置

CKEDITOR_BASEPATH = "/static/ckeditor/ckeditor/"
CKEDITOR_UPLOAD_PATH = MEDIA_ROOT
CKEDITOR_CONFIGS = {
    'default': {
        'skin': 'moono-dark',
        'toolbar_CustomConfig': [
            # ....
            {'name': 'links',
             'items': ['Link', 'Unlink',
                       ]
             },
        ],
        'toolbar': 'CustomConfig',
        'height': 350,
        'width': '100%',

        'tabSpaces': 4,
        'extraPlugins': ','.join([
            '# ....
        ]),
    }
}

我也尝试编辑config.js文件

CKEDITOR.editorConfig = function (config) {

    config.codeSnippet_theme = 'monokai_sublime';
    config.resize_maxHeight = 350;

};

还有一个事实,它是在某个时间开始的,当我单击输入文本后,它会更改其高度

0 个答案:

没有答案