2014-11-26 2 views

ответ

1

Вы добавили startupFocus: верный вашему конфигурационному файлу?

Посмотрите: http://ckeditor.com/forums/CKEditor-3.x/Set-focus-load

Отрывок из моего пользовательского файла конфигурации выглядит примерно так

CKEDITOR.editorConfig = function(config) { 
    // Define changes to default configuration here. For example: 
    config.extraPlugins = 'confighelper'; 
    config.autoGrow_onStartup = true; 
    config.autogrow_minheight = 50; 
    config.autogrow_maxheight = 200; 
    config.contentsLangDirection = 'ui'; 
    config.startupFocus = true; 

    //more options... 
}; 
Смежные вопросы