如何将参数传递给 Sencha 2 模板?下面是我的小模板,尝试过不同的事情,比如在模板上定义“字段变量”和使用配置,等等第四,但我肯定做错了什么。假设我想给出参数“标题”和“使用时间”,我该怎么做
Ext.define('Sencha.templates.AppDetailsUsageTemplate' ,{
extend: 'Ext.XTemplate',
constructor: function (config) {
var html = [
'<div id="{id}" class="limitsList {cls}">',
' <div class="reportsSummaryLeft"> {title} </div>',
' <div class="reportsSummaryRight"> {usageTime} </div>',
' <div style="clear:both"></div>',
'</div>'];
this.callParent(html);
}
});
在我看来,我想做一些事情(下面的伪代码):
xtype: 'container',
tpl: Ext.create('Sencha.templates.AppDetailsUsageTemplate',{
title: 'test tittle',
usageTime: 100384
})