summaryrefslogtreecommitdiffstats
path: root/deluge/ui/web/js/extjs/ext-extensions/tree/TreeGridRenderColumn.js
blob: 20bde8acc502cc5fb5fccf98bfb1c5cd03a8b537 (plain)
1
2
3
4
5
6
7
8
9
Ext.tree.RenderColumn = Ext.extend(Ext.tree.Column, {
    constructor: function(c) {
        c.tpl = c.tpl || new Ext.XTemplate('{' + c.dataIndex + ':this.format}');
        c.tpl.format = c.renderer;
        c.tpl.col = this;
        Ext.tree.RenderColumn.superclass.constructor.call(this, c);
    },
});
Ext.reg('tgrendercolumn', Ext.tree.RenderColumn);