我正在看这个例子w.r.t创建tinyMCE插件。我想做的就是打开 一个弹出窗口,弹出窗口内的内容是以编程方式指定的,无需在某个URL上加载物理页面:
Add an input element of type=file in tinymce container
基本上,作者解决了他试图创建的插件的问题。我正在尝试相同的代码,但弹出对我来说完全是空的,没有错误,有什么建议吗?在调用“windowManager.open”时,我在哪里可以找到有关“body”参数的信息,如:
// Open window
editor.windowManager.open({
title: 'Example plugin',
body: [{
type: 'textbox',
name: 'code',
label: 'Video code'
}],
...
答案 0 :(得分:2)
尝试给文本框一个大小:
// Open window
editor.windowManager.open(
{title: 'Example plugin',
body: [
{ type: 'textbox',
size: 40,
name: 'code',
label: 'Video code'
}
],
.....