这是树中的节点
{
text:'more then a_veryverylongword ',
leaf: true
}
这里的问题是没有显示非常长的单词,但是如果我调整面板的大小,那么这个单词会显示出来吗?
有人告诉我,我该怎么做才能打破这个词? css不工作修改面板的大小不是一个选项。
由于
答案 0 :(得分:0)
以下是来自sencha及其工作的示例编辑代码......
var store = Ext.create('Ext.data.TreeStore', {
root: {
expanded: true,
children: [
{ text: "detention", leaf: true },
{ text: "homework", expanded: true, children: [
{ text: "book report", leaf: true },
{ text: 'more then a_veryverylongword ', leaf: true}
] },
{ text: "buy lottery tickets", leaf: true }
]
}
});
Ext.create('Ext.tree.Panel', {
title: 'Simple Tree',
width: 250,
height: 150,
store: store,
rootVisible: false,
renderTo: Ext.getBody()
});