加载树

ext 生成目录树

 

{
      title : "资源列表",
      iconCls : "checkIcon",
      xtype:"treepanel", //指定类型为树面板
      autoScroll : true, //自动添加滚动条
      border : false, //不要边框
      id : "mytree",
      tools:[{
       id : "refresh",//刷新按钮
       handler:this.onRefreshTreeNodes,
       scope:this
      }],
      //树的加载器
      loader : new Ext.tree.TreeLoader({
       //tree数据的远程服务地址,相当于proxy,每次请求会将node的id值传递给服务器
       dataUrl: "moduel!getModuel.action"
      }),
      root : new Ext.tree.AsyncTreeNode({
       text : "Demo管理系统",
       iconCls:"treeRootIcon",
       id:"1"
      }),
      // 监听事件
     listeners : {
      "click" : {
       fn : this.onTreeNodeClick,
       scope : this
      }
     }
      
     }

你可能感兴趣的:(ext)