Ext.create('Ext.tree.Panel', {
renderTo: Ext.getBody(),
title: 'Simple Tree',
width: 150,
height: 150,
root: {
text: 'Root',
expanded: true,
children: [
{
text: 'Child 1',
leaf: true
},
{
text: 'Child 2',
leaf: true
},
{
text: 'Child 3',
expanded: true,
children: [
{
text: 'Grandchild',
leaf: true
}
]
}
]
}
});
并且只有像面板一样的东西正在身体上呈现。 html就是这个
<body>
<div>
</div>
</body>
我做错了什么?答案 0 :(得分:0)
Ext.create()
内调用 Ext.onReady()
函数,否则会渲染一些元素而其他元素不会