Ext.require([ '*' ]); Ext.onReady( function (){ var addButton = Ext.create( 'Ext.Button' , { text: '노드 추가(Add Node)' , scale: 'large' , listeners: { el: { click: function () { var thisNode = Ext.getCmp( 'xAxisTreeUse' ).getRootNode().appendChild({ "text":"노드 이름 (Node name) " }); Ext.getCmp( " tree " ).selectPath(thisNode.getPath()); } } }); var store = Ext.create( 'Ext.data.TreeStore' , { id: 'store' , ...
댓글
댓글 쓰기