ExtJS XTemplate 允许您.
在for
标签中使用来遍历存储中的所有记录:
tpl: new Ext.XTemplate(
'<tpl for=".">',
'<div>{thing}</div>',
'</tpl>'),
如果集合为空(即,如果从未输入过 for 循环),我想呈现一条消息。我已经设置了allowEmptyStore: true
。
如何使用 if 语句来确定商店是否为空。我试过if(".")
,if(Ext.empty(.)
和if(Ext.empty(this.myStore))
. 我猜这是与模板相当常见的事情。我缺少什么神奇的语法?