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}"> ',
' {filename}</div>',
'</tpl>',
'<div class="x-clear"></div>',
{
isTitle: function (title) {
this.temp = title;
},
tempValue: function () {
this.temp = '';
}
}
);
我打开了一个弹出窗口并使用 Dataview 模板(extjs-4.1.1)显示了一些带有复选框的文件名,因为我不知道如何获取所选文件名的长度(复选框所选项目)。你能用例子给我解释一下吗?