我想</br>
在 12 次迭代后添加一个XTemplate
. 我尝试了很多方法,但无法让它发挥作用。示例代码如下:
days = new Ext.XTemplate(
'<b>Days of month</b>',
'<table width="100%"><tr><td style="word-wrap:break-word;">',
'<tpl for=".">',
'<tpl for="data">',
**'{% if (xindex % 12 === 0) { %}' +
'<br/>' +
'{% } %}',**
,'{fieldValue}',
'</tpl>',
'</tpl>',
'</td></tr></table>',
我尝试使用xindex
,但它没有任何效果,并且在 12 条记录后没有添加换行符。我做错了什么?