我正在使用数据视图控件,我需要从它的tpl调用一个函数。下面是我的代码,但它不工作。
xtype: 'dataview',
scrollable: true,
tpl: new Ext.XTemplate(
'<tpl for=".">',
'<div class="messageTbl">',
'<table style="width: 100%;">',
'<tr><td>{[this.formatDate(CreationDate)]}</td><tr/>',
'</table>',
'</div>',
'</tpl>',
{
formatDate: function (date) {
return date;
}
},
}
),
2条答案
按热度按时间isr3a4wc1#
formatDate
函数中有语法错误。7kjnsjlb2#
在同一示例中请求索引:
这是在XTemplate文档的摘要部分吗?
XTemplate Documentation