Heim > Fragen und Antworten > Hauptteil
Ich bin sehr neu bei Extjs und arbeite derzeit mit einem Baum, in dem ich einen Zweig und dann Abschnitte erstellen kann. Ich benötige Hilfe bei der Codebearbeitungsfunktion.
createSection: Funktion(Schaltfläche){ 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(), },