我试图在SWT控件中通过http://pep.ijieee.org.in/journal_pdf/11-126-142960909718-22.pdf使用嵌入式CKEditor。 它通过Eclipse RCP中的内置浏览器引擎使用CKEditor。控件尝试使用CKEdior的 startupFocus 来初始化HTML页面中的简单HTML文本区域中的CKEditor,但无法调用。 它不能始终如一地工作,在一台机器上工作,但在其他机器上工作。以下是星云类的代码片段,请指出正确的方向,为什么它不能一直工作。提前谢谢。
CKEDITOR.replace( 'editor',
{
startupFocus : true,
on: {
'instanceReady' : function(event) {
//maximize the editor after the editor instance is ready
maximizeEditorHeight();
event.editor.on('resize', function(resizeEvent) {
if ((prevHeight == null) || prevHeight != resizeEvent.editor.container.$.clientHeight) {
prevHeight = CKEDITOR.instances.editor.container.$.clientHeight;
if (!mouseDown) {
// if the resize is trigger by an external event,
// e.g. toolbar expand/collapse
maximizeEditorHeight();
}
if (resizeCallbackEnabled) {
resizeParentContainer();
}
}
else if (prevHeight == CKEDITOR.instances.editor.container.$.clientHeight) {
prevHeight = null;
}
});
},
//notify the FocusListener
'focus' : function() { focusIn(); },
'blur' : function() { focusOut(); },
//notify the ModifyListener
'change' : function() { textModified(); },
//ensure the key pressed event is fired if Enter is pressed
'key' : function(event) { event.data.preventDefault(false); },
//notify the KeyListener
'contentDom' : function() {
this.document.on('keydown', function(evt) {
if (evt.data.$.ctrlKey && evt.data.getKey() == 70) {
//prevent opening of browser find dialog on CTRL + F
evt.data.preventDefault(false);
//open the ckeditor find and replace dialog
CKEDITOR.instances.editor.execCommand('find')
}
else if (evt.data.$.ctrlKey && evt.data.getKey() == 72) {
evt.data.preventDefault(false);
//open the ckeditor find and replace dialog
CKEDITOR.instances.editor.execCommand('replace')
}
keyPressed(evt.data.getKey(), evt.data.getKeystroke());
});
this.document.on('keyup', function(evt) {
keyReleased(evt.data.getKey(), evt.data.getKeystroke());
});
}
}
});

答案 0 :(得分:1)
不,因为HTML模板引用了js库,我找不到在jar中指定这些引用的方法。如果您有想法解决这个问题,请随时提供帮助。