zoukankan      html  css  js  c++  java
  • 多级分布加载树节点

    Ext.onReady(function () {
                Ext.define('companyInfo', {
                    extend: 'Ext.data.Model',
                    fields: [ 'companyName','staffNum']
                });
                var treeStore1= Ext.create('Ext.data.TreeStore', {
                    model: 'companyInfo',
                    proxy: {
                        type: 'ajax',
                        url: 'Handler5.ashx',
                       // reader: 'json'
                    },
                   // nodeParam: 'orgId',nodeParam默认为“node”
                    //autoLoad: true,
                    root: {//定义本store的根节点,后台需要根的id来选择加载根的节点。根的id默认是空的
                        name: '根节点',
                        id: '-1'
                    }
                });
                Ext.create('Ext.tree.Panel', {
                    title: '分级加载树节点',
                    renderTo: Ext.getBody(),
                    500,
                    height: 350,
                    store: treeStore1,
                    //rootVisible:false,
                    columns: [
                        { xtype:'treecolumn', text: '公司名称', dataIndex: 'companyName', sortable: true, flex: 1 },
                { text: '员工人数', dataIndex: 'staffNum', sortable: true, flex: 1 }
                    ]
                });
            });
            
            
            
            
            
  • 相关阅读:
    [Intellij] 软件设置和常用快捷键
    [Intellij] Project Structure 配置说明
    [日志log] 常用log日志记录方式对比和详解
    [J2EE]web.xml各个版本模板
    [技术选型] CDH-Cloudera Distribution Hadoop
    [技术选型] dubbo
    [技术选型] spring boot
    [hbase] HBase内置过滤器的一些总结
    [zookeeper] Zookeeper伪分布式集群配置
    [maven] settings 文件 本地maven仓库
  • 原文地址:https://www.cnblogs.com/lz3018/p/4579791.html
Copyright © 2011-2022 走看看