CKEditor:使用 jQuery 的自定义对话框

发布于 2024-10-30 04:43:32 字数 184 浏览 1 评论 0原文

我的 CKEditor 有一点问题。

我想创建一个新按钮,只需单击一下即可,而不是普通的 CKEditor 对话框元素。我想用 jQuery 打开一个新窗口,我可以用自定义 HTML 填充它。

这可能吗?我该怎么办?

非常感谢, Torben

(抱歉,不幸的是文本必须使用谷歌翻译器翻译)

I have a little problem with the CKEditor.

I would like to create a new button, which relies, in one click, not the normal CKEditor dialog elements. I want to open a new window with jQuery, which I can fill it with custom HTML.

Is this possible? How do I go about it?

Thank you very much,
Torben

(Sorry, the text unfortunately had to translate with Google Translator)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

删除→记忆 2024-11-06 04:43:32

我就做过这件事。我们根本不使用内置对话框。我们使用 iframemedialog。

这是我用来创建使用此模式的插件的文件模板。

CKEDITOR.plugins.add( '$PLUGINNAMEALLLOWERCASE

然后,您可以在 iframe 中创建您想要的任何 HTML,包括自定义 CSS/JS

, { init : function( editor ) { var pluginName = '$PLUGINNAMEALLLOWERCASE

然后,您可以在 iframe 中创建您想要的任何 HTML,包括自定义 CSS/JS

; // Register the dialog. CKEDITOR.dialog.addIframe(pluginName, pluginName, '/path/to/load/the/html.html', 410, 508, function() {}); // Register the command. var command = editor.addCommand(pluginName, {exec: function() { editor.openDialog(pluginName); }}); command.modes = { wysiwyg:1, source:0 }; command.canUndo = false; editor.ui.addButton('$PLUGINNAMEPASCALCASE

然后,您可以在 iframe 中创建您想要的任何 HTML,包括自定义 CSS/JS

, { label: $BUTTONLABEL$, className: 'cke_button_' + pluginName, command: pluginName }); editor.on( 'doubleclick', function( evt ) { var element = evt.data.element; if ( element.is( '$NODENAME

然后,您可以在 iframe 中创建您想要的任何 HTML,包括自定义 CSS/JS

) && !element.data( 'cke-realelement' ) ) { evt.data.dialog = '$PLUGINNAMEALLLOWERCASE

然后,您可以在 iframe 中创建您想要的任何 HTML,包括自定义 CSS/JS

; evt.cancel(); } }); // If the "menu" plugin is loaded, register the menu items. if ( editor.addMenuItems ) { editor.addMenuItems( { $PLUGINNAMEALLLOWERCASE$ : { label : $EDITLABEL$, command : '$PLUGINNAMEALLLOWERCASE

然后,您可以在 iframe 中创建您想要的任何 HTML,包括自定义 CSS/JS

, group : '$PLUGINNAMEALLLOWERCASE

然后,您可以在 iframe 中创建您想要的任何 HTML,包括自定义 CSS/JS

} }); } // If the "contextmenu" plugin is loaded, register the listeners. if ( editor.contextMenu ) { editor.contextMenu.addListener( function( element, selection ) { if ( !element || !element.is('$NODENAME

然后,您可以在 iframe 中创建您想要的任何 HTML,包括自定义 CSS/JS

) || element.data( 'cke-realelement' ) || element.isReadOnly() ) return null; return { $PLUGINNAMEALLLOWERCASE$ : CKEDITOR.TRISTATE_OFF }; }); } } } );

然后,您可以在 iframe 中创建您想要的任何 HTML,包括自定义 CSS/JS

I've done this very thing. We don't use the built in dialogs at all. We use an iframedialog.

Here's a file template I have that I use to create plugins using this pattern.

CKEDITOR.plugins.add( '$PLUGINNAMEALLLOWERCASE

You can then create whatever HTML you want inside the iframe, including custom CSS/JS

, { init : function( editor ) { var pluginName = '$PLUGINNAMEALLLOWERCASE

You can then create whatever HTML you want inside the iframe, including custom CSS/JS

; // Register the dialog. CKEDITOR.dialog.addIframe(pluginName, pluginName, '/path/to/load/the/html.html', 410, 508, function() {}); // Register the command. var command = editor.addCommand(pluginName, {exec: function() { editor.openDialog(pluginName); }}); command.modes = { wysiwyg:1, source:0 }; command.canUndo = false; editor.ui.addButton('$PLUGINNAMEPASCALCASE

You can then create whatever HTML you want inside the iframe, including custom CSS/JS

, { label: $BUTTONLABEL$, className: 'cke_button_' + pluginName, command: pluginName }); editor.on( 'doubleclick', function( evt ) { var element = evt.data.element; if ( element.is( '$NODENAME

You can then create whatever HTML you want inside the iframe, including custom CSS/JS

) && !element.data( 'cke-realelement' ) ) { evt.data.dialog = '$PLUGINNAMEALLLOWERCASE

You can then create whatever HTML you want inside the iframe, including custom CSS/JS

; evt.cancel(); } }); // If the "menu" plugin is loaded, register the menu items. if ( editor.addMenuItems ) { editor.addMenuItems( { $PLUGINNAMEALLLOWERCASE$ : { label : $EDITLABEL$, command : '$PLUGINNAMEALLLOWERCASE

You can then create whatever HTML you want inside the iframe, including custom CSS/JS

, group : '$PLUGINNAMEALLLOWERCASE

You can then create whatever HTML you want inside the iframe, including custom CSS/JS

} }); } // If the "contextmenu" plugin is loaded, register the listeners. if ( editor.contextMenu ) { editor.contextMenu.addListener( function( element, selection ) { if ( !element || !element.is('$NODENAME

You can then create whatever HTML you want inside the iframe, including custom CSS/JS

) || element.data( 'cke-realelement' ) || element.isReadOnly() ) return null; return { $PLUGINNAMEALLLOWERCASE$ : CKEDITOR.TRISTATE_OFF }; }); } } } );

You can then create whatever HTML you want inside the iframe, including custom CSS/JS

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文