0
this.items[0].tpl = Ext.create('Ext.XTemplate',
    '{[this.tempValue()]}',
    '<tpl for=".">',
        '<tpl if="this.temp != title">',
            '<h3 class="dataview-title">{title}</h3>',
            '{[this.isTitle(values.title)]}',
        '</tpl>',
    '<div class="download-file">',
    '<input type="checkbox" value="{title}/{filename}"> ',
    '&nbsp;{filename}</div>',
    '</tpl>',
    '<div class="x-clear"></div>',
    {
        isTitle: function (title) {
            this.temp = title;
        },
        tempValue: function () {
            this.temp = '';
        }
    }
);

我打开了一个弹出窗口并使用 Dataview 模板(extjs-4.1.1)显示了一些带有复选框的文件名,因为我不知道如何获取所选文件名的长度(复选框所选项目)。你能用例子给我解释一下吗?

4

1 回答 1

0

您需要查询 DOM:

dv.el.select('input:checked').each(function(el){
    console.log(el.value);
});
于 2013-04-10T21:11:48.563 回答