任何人都有使用ckeditor的URDU语言js库吗?

时间:2017-04-27 18:36:55

标签: ckeditor phonetics urdu

任何人都有使用ckeditor的URDU语言JS库吗?我可以付钱给他,我非常重要。 我使用过这个库http://ckeditor.com/forums/Plugins/Urdu-input它在Mozilla中有效,但在chrome中不起作用,在chrome中它显示了字符,但没有显示单词。

1 个答案:

答案 0 :(得分:0)

而不是添加不同的语言插件,其中的单词不同或可能是错误的。您可以使用系统键盘语言,并在CKEditor中根据语言使用内容方向(即contentsLangDirection)。我这样做了:

$(function(){
    $("#Language_secondary").change(function(){
        resetCKEditorAccordingToLanguage(CKEDITOR.instances.editor4, this.value)
    });
});

function resetCKEditorAccordingToLanguage(ckeditorObj, Language_secondary){
    switch(Language_secondary){
        case 'ARABIAN':
        case 'URDU':
            ckeditorObj.config.contentsLangDirection = 'rtl';
            break;
        default :
            ckeditorObj.config.contentsLangDirection = 'ltr';
            break;
        }
    }
}