0

我正在使用 Extjs 6 中的一棵树,它有 3 列,但我在所有列中都得到了图标和箭头。它看起来不像这个例子

我知道我可以用 CSS 隐藏它们,但它们不应该存在。我究竟做错了什么?

这就是我的树的样子。

看法

Ext.define('CONVENIO.view.tipocontrato.TipoContrato', {
extend : 'Ext.tree.Panel',
//requires : [ 'CONVENIO.controller.TipoContrato', ],

//controller : 'tipocontrato',
store : Ext.create('CONVENIO.store.TipoContrato'),
xtype : 'tipo-contrato-tree',

useArrows : true,
rootVisible : false,
reserveScrollbar : true,
multiSelect: true,

columns : [ {
    xtype : 'treecolumn',
    text : 'Tipo de Contratos',
    cellWrap : true,
    flex : 3,
    dataIndex : 'nombre',
    sortable  : true
}, {
    xtype : 'treecolumn',
    text : 'Inicio',
    cellWrap : true,
    flex : 1,
    dataIndex : 'feInicio',
    sortable  : true
}, {
    xtype : 'treecolumn',
    text : 'Fin',
    cellWrap : true,
    flex : 1,
    dataIndex : 'feFin',
    sortable  : true
} ],
bbar : [ '->', {
    xtype : 'componente-error'
}, {
    xtype : 'boton-nuevo',
}, {
    xtype : 'boton-editar',
}, '-', {
    xtype : 'boton-salir',
} ],
defaultButton : 'botonPrincipal',

/*listeners : {
    beforeitemexpand : 'onBeforeItemExpand',
    beforerender : 'onBeforeRender',
}*/

});

店铺

Ext.define('CONVENIO.store.TipoContrato', {
extend: 'Ext.data.TreeStore',   
model:  'CONVENIO.model.TipoContrato',

proxy: {
    type: 'memory',
    reader: {
        type: 'json',
    },
},

root : {
    expanded: true,
    children: [
        {
            nombre: 'A',
            feInicio : '01/11/2015',
            feFin: '30/11/2015'
        },
        {
            nombre: 'B',
            feInicio : '01/11/2015',
            feFin: '30/11/2015',
            children:[{
                nombre: 'B.1',
                feInicio : '01/11/2015',
                feFin: '30/11/2015',
            }]
        },
        {
            nombre: 'C',
            feInicio : '10/11/2015',
            feFin: '30/11/2015',
        }
    ]
},

});
4

1 回答 1

1

只有第一列应该是treecolumn. 删除xtype其他人,让它默认。

于 2015-11-12T02:07:33.887 回答