我有一个方法如下:
createTip : function() {
var eventTip = new Ext.XTemplate(
'<tpl if="EventType == \'ONE\'">',
'<p> This is event one </p>',
'</tpl>',
'<tpl if="EventType == \'Two\'">',
return null;
'</tpl>'
);
return eventTip;
}
我想要做的是,如果 EventType 是“TWO”,则使该方法返回 null。这可能吗?
就像上面的代码一样。我知道这是不可能的,但无论如何都可以这样做。如果 EventType 是两个,我不希望创建 xtemplate。
谢谢