Я пытаюсь добавить новый узел в дерево в ExtJS 4.0.2, используя метод insertBefore класса Ext.data.NodeInterface.
Но я все еще получаю ошибку: "insertBefore не является функцией"
var config = {
allowDrag: false,
allowDrop: false,
cls: 'myClass',
iconCls: 'myIconClass',
leaf: true,
text: 'someText'
};
var node1 = Ext.create('Ext.data.NodeInterface', config);
var node2 = Ext.create('Ext.data.NodeInterface', config);
var node3 = null;
node1.insertBefore(node2, node3); // "node1.insertBefore is not a function"
Есть идеи, что может быть не так?