我想用HtmlEditor创建一个窗口 像:
var be= new qx.ui.form.TextArea("");
be.setWrap(true);
var htm= new qx.bom.htmlarea.HtmlArea(be,"test");
this.add(htm);
我收到错误:
TypeError: parent is null
if (parent.firstChild) {
非常感谢
摩尼
答案 0 :(得分:1)
您无法将qooxdoo对象添加到HtmlArea中。
第一个参数应该是HTML元素:
http://demo.qooxdoo.org/current/apiviewer/#qx.bom.htmlarea.HtmlArea
快速浏览一下这个演示(尤其是JS代码):
http://demo.qooxdoo.org/current/demobrowser/#bom~HtmlArea.html