2

我正在使用 Ext Scheduler ( http://www.bryntum.com/products/scheduler/ ) 构建简单的应用程序。我正在尝试为 treecolumn 添加自定义渲染器,该渲染器将在树中具有人物图标。 在此处输入图像描述

我为该列创建了渲染:

renderer: function (v, m, r) {
            if (r.get('leaf')) {
                return '<div style="float: left">' +
                    r.get('Name') +
                    '</div>'+
                    '<img data-qtip="<img src=iconUrl.png width=60px height=60px/>" '+
                    'src="iconUrl.png" '+
                    'width="20px" height="20px" style="float: right; margin-right: 5px"/>';
            }
            return v;
        }

这看起来不错,但是对于长名称,我会得到不想要的外观:

在此处输入图像描述

通过查看代码,我发现了一些不需要的标记: 在此处输入图像描述

我需要的是与标准树形列几乎相同的渲染器,但我需要在该列的右侧添加额外的图标 - 员工图像缩略图。

在此处输入图像描述

我正在搜索文档,发现有一个名为cellTplhttp://docs.sencha.com/extjs/4.2.1/source/Column2.html#Ext-tree-Column)的私有财产

但我不知道我应该如何改变它,我应该改变它,因为它在顶部被标记为私有。

我应该如何更改该渲染器以使效果与上一张图像一样?

这里有一些 jsfiddle 玩:http: //jsfiddle.net/Misiu/gwFdr/

4

1 回答 1

2

我结束了扩展Ext.tree.Column而不是显示缩略图的普通叶子图标。
这是我的代码:

Ext.define('Grafik.component.tree.Column2', {
    extend: 'Ext.tree.Column',
    alias: 'widget.treecolumn2',

    thumbnailsServiceUrl:'',

    cellTpl: [
        '<tpl for="lines">',
            '<img src="{parent.blankUrl}" class="{parent.childCls} {parent.elbowCls}-img ',
            '{parent.elbowCls}-<tpl if=".">line<tpl else>empty</tpl>"/>',
        '</tpl>',
        '<img src="{blankUrl}" class="{childCls} {elbowCls}-img {elbowCls}',
            '<tpl if="isLast">-end</tpl><tpl if="expandable">-plus {expanderCls}</tpl>"/>',
        '<tpl if="checked !== null">',
            '<input type="button" role="checkbox" <tpl if="checked">aria-checked="true" </tpl>',
                'class="{childCls} {checkboxCls}<tpl if="checked"> {checkboxCls}-checked</tpl>"/>',
        '</tpl>',
        '<img src="{loginUrl}" class="{childCls} {baseIconCls} ',
            '{baseIconCls}-<tpl if="leaf">leaf<tpl else>parent</tpl> {iconCls}"',
            '<tpl if="icon">style="background-image:url({icon})"</tpl>/>',
        '<tpl if="href">',
            '<a href="{href}" target="{hrefTarget}" class="{textCls} {childCls}">{value}</a>',
        '<tpl else>',
            '<span class="{textCls} {childCls}">{value}</span>',
        '</tpl>'
    ],


    treeRenderer: function (value, metaData, record, rowIdx, colIdx, store, view) {
        var me = this,
            cls = record.get('cls'),
            renderer = me.origRenderer,
            data = record.data,
            parent = record.parentNode,
            rootVisible = view.rootVisible,
            lines = [],
            parentData;

        if (cls) {
            metaData.tdCls += ' ' + cls;
        }

        while (parent && (rootVisible || parent.data.depth > 0)) {
            parentData = parent.data;
            lines[rootVisible ? parentData.depth : parentData.depth - 1] =
                    parentData.isLast ? 0 : 1;
            parent = parent.parentNode;
        }

        return me.getTpl('cellTpl').apply({
            record: record,
            baseIconCls: me.iconCls,
            iconCls: data.iconCls,
            icon: data.icon,
            checkboxCls: me.checkboxCls,
            checked: data.checked,
            elbowCls: me.elbowCls,
            expanderCls: me.expanderCls,
            textCls: me.textCls,
            leaf: data.leaf,
            expandable: record.isExpandable(),
            isLast: data.isLast,
            blankUrl: Ext.BLANK_IMAGE_URL,
            loginUrl: data.leaf ? me.thumbnailsServiceUrl + record.get('Login') : Ext.BLANK_IMAGE_URL,
            href: data.href,
            hrefTarget: data.hrefTarget,
            lines: lines,
            metaData: metaData,
            // subclasses or overrides can implement a getChildCls() method, which can
            // return an extra class to add to all of the cell's child elements (icon,
            // expander, elbow, checkbox).  This is used by the rtl override to add the
            // "x-rtl" class to these elements.
            childCls: me.getChildCls ? me.getChildCls() + ' ' : '',
            value: renderer ? renderer.apply(me.origScope, arguments) : value
        });
    }
});

用法如下所示:

{
    text: 'Users',
    dataIndex: 'Name',
    hideable: false,
    width: 260,
    xtype: 'treecolumn2',
    sortable: true,
    resizable: false,
    thumbnailsServiceUrl: window.appUrl + 'api/Thumbnails/'
}

api/Thumbnails需要登录并返回图像的服务在哪里。
简单的解决方案,希望对某人有所帮助:)

于 2014-02-06T08:40:05.593 回答