我对Extjs非常陌生,我目前正在使用一个树,在那里我可以创建一个分支,然后创建部分。我需要帮助我的代码编辑功能。
createSection:function(button){ var node = button.up('menu ').node;
if (node.data.leaf) {
return false;
}
node.expand();
var newSection = node.appendChild({
name: 'New section ' + "(" + (node.childNodes.length +1) + ")" ,
type: 'toc-by-system',
leaf: false,
id: uuid['v4'](),
children: [],
editor: {
xtype: 'textfield'
}
});
newSection.BeginEdit(),
},
2条答案
按热度按时间kg7wmglp1#
请查看示例代码,以编程方式添加节点,点击按钮即可!
egdjgwm82#
选中这个小提琴,它有单击和双击编辑动态树单元格编辑器的选项