1

当其中之一是 xtype 'treecolumn' 时,是否可以合并 TreeGrid 中的 2 列?

现在我有 2 个单独的列,一个是标准树列,第二个是带有自定义模板的模板列(基本上是一个图像)

现在看起来像这样

我想得到的应该是这样的:

我想做的事

这样第二列的内容就会被添加到第一列但右对齐。

我什至不知道如何从那种渲染器开始:(

到目前为止,这是我的专栏的代码:

{
    xtype : 'treecolumn',
    text : 'Dział/Pracownik',
    width : 200,
    sortable : true,
    hideable: false,
    dataIndex : 'Name',
    renderer: function (v, m, r) {
        if(r.get('leaf')==true)
            m.tdAttr = 'data-qtip="<img src=services/Images.ashx?login='+r.get('login')+' width=60px height=60px>"';
            return v;
    }
},
{
    text : 'Zdj', 
    width: 40, 
    align : 'center', 
    dataIndex : 'Name', 
    sortable : false, 
    resizable: false,
    xtype : 'templatecolumn', 
    tpl : imgTpl
},
...
var imgTpl = Ext.create('Ext.XTemplate',
    '<tpl for=".">',
        '<tpl if="values.leaf == true">',
        '<img src="services/Images.ashx?login={login}" width="25px" height="25px"/>',
    '</tpl>',
    '</tpl>'
);

对于如何合并这 2 列的任何提示,我将不胜感激。

4

2 回答 2

1

这是我最终做了什么:

 renderer:function (value, meta, record) {
                    var tasks = record.get("tasks"),
                        tpl =     this.taskImgTpl,
                        type, qtip;
                    if (tasks && tasks.length >0){
                        Ext.each(tasks, function(task){
                            if(task.refType) {
                                type = task.refType;
                            } else {
                                type = task.type.name;
                            }
                            qtip = Ext.String.format('Status:  {0}  Assignee:  {1}  %Complete:  {2}',task.state,task.assignee||'',task.pctComplete);
                            value += tpl.apply([type, qtip]);
                        },this);
                    }

                    return value;
                }

正在插入的图像模板是:

taskImgTpl:new Ext.XTemplate(" &nbsp; &nbsp;  <img class='{0} h16' width='16px' data-qtitle='{0}' data-qwidth='120' data-qtip='{1}'/>")

其中 h16 是一个给出高度:16px 的类,动态插入的类携带一个背景图像 (16x16),无论显示的对象类型是什么。您当然可以只设置 src 属性。

于 2012-07-17T06:01:58.267 回答
1

我所做的是使用我使用渲染器的模板,所以我的列现在看起来像这样:

{
    xtype : 'treecolumn',
    text : 'Employee',
    width : 200,
    sortable : true,
    hideable : false,
    dataIndex : 'Name',
    renderer : function(v, m, r) {
        if (r.get('leaf')) {
            return '<div style="float: left">'
            + r.get('Name')
            + '</div><img data-qtip="<img src=services/Images.ashx?login='
            + r.get('login')
            + ' width=60px height=60px/>" src="services/Images.ashx?login='
            + r.get('login')
            + '" width="25px" height="25px" style="float: right; margin-right: 5px"/>';
        }

    return '<div style="float: left">' + r.get('Name') + '</div>';
    }
}

如果元素是叶子,那么我会在列的右侧显示额外的图像 + 我在翻转后添加了更大的图像。

为了让它工作,我必须在 ext-all.css 中更改一些 css:

.x-grid-with-row-lines .x-tree-icon{margin-top:1px; 浮动:左} .x-grid-with-row-lines .x-tree-elbow,.x-grid-with-row-lines .x-tree-elbow-end,.x-grid-with-row-lines .x-tree-elbow-plus,.x-grid-with-row-lines .x-tree-elbow-end-plus,.x-grid-with-row-lines .x-tree-elbow-empty,. x-grid-with-row-lines .x-tree-elbow-line{height:19px;background-position:0 -1px; 向左飘浮}

我必须将 float:left 添加到该单元格中显示的所有图像:

  • x树弯头
  • x-tree-肘端
  • x-tree-elbow-plus
  • x树图标

我知道这可以优化很多,但对我来说效果很好。如果某些 ExtJS 大师可以对其进行调整以使其更好地工作,那么欢迎您 :)

于 2012-07-18T13:30:10.903 回答