如果条件不起作用,则扩展模板
代码:
tpl : new Ext.Template(
'<tpl if="{isCommentable} == true">{qnNum}</tpl>'
),
上面的代码不起作用。isCommentable 来自 Ext.data.Record 是一个布尔值。
你知道为什么模板中的 if 条件有效吗
if 子句中没有括号。检查文档。所以那将是:
'<tpl if="isCommentable">{qnNum}</tpl>'
试试这个:
tpl : new Ext.Template( '<tpl if="{isCommentable}">{qnNum}</tpl>' ),
而且你必须使用 Ext.XTemplate 而不是 Ext.Template