1
此樹面板節點標籤突破是樹在extjs4
{
text:'more then a_veryverylongword ',
leaf: true
}
這裏節點的問題是,是不是顯示一個非常非常長的字,但如果我調整面板顯示的字?
有人告訴我,我該怎麼做才能打破這個詞? CSS不工作來修改面板的大小不是一個選項。
感謝
此樹面板節點標籤突破是樹在extjs4
{
text:'more then a_veryverylongword ',
leaf: true
}
這裏節點的問題是,是不是顯示一個非常非常長的字,但如果我調整面板顯示的字?
有人告訴我,我該怎麼做才能打破這個詞? CSS不工作來修改面板的大小不是一個選項。
感謝
這裏是樣品編輯從煎茶,其工作代碼...
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()
});
doLayout不工作:(謝謝:) – tallica 2012-03-02 10:27:14
可以張貼代碼或代碼的一部分? – 2012-03-02 11:17:13