1

こんにちは友人、私はextjs 4に不慣れです、how to rename of extjs 4 tree node私に提案を与えてください、そして私に参照を与えてください。
ツリーパネルのコードの下

var treePanel = Ext.create('Ext.tree.Panel', {
    id: 'tree-panel',
    title: 'Taxonomy',
    region: 'west',
    collapsible: true,
    split: true,
    //multiSelect: true,                            
    height: '100%',
    width: '20%',
    minWidth: 100,
    rootVisible: false,
    autoScroll: true,
    store: store,
    viewConfig: {
        allowCopy: true,


        plugins: {
            ptype: 'treeviewdragdrop',
            appendOnly: true,
            ddGroup: 'selDD'
        },
4

1 に答える 1

0

列構成とエディターを単一の列に追加するだけで、コードでどのように機能すると思いますか:

var treePanel = Ext.create('Ext.tree.Panel', {
    id: 'tree-panel',
    title: 'Taxonomy',
    region:'west',
    collapsible: true,
    split: true,
    //multiSelect: true,                            
    height:'100%',       
    width: '20%',
    minWidth: 100,
    rootVisible: false,
    autoScroll: true,
    store: store,
    viewConfig: {
    allowCopy: true,


    plugins: {
        ptype: 'treeviewdragdrop',
        appendOnly: true,
        ddGroup:    'selDD'
    },
    columns: [
       {
           xtype:     "treecolumn",
           dataIndex: "text",
           flex:      1,
           editor:{
               xtype:      "textfield"
           }
       }
    ]
}
于 2013-03-11T19:41:15.650 に答える