这是我目前的临时
<div class="ProjectT">{strType}  -  {strTitle}</div>
我真的不知道是否可以通过架构师,但我想用一个switch case替换{strType},这会根据strType的值插入一个IcoMoon图标。
已经添加了图标(已检查并且有效)
答案 0 :(得分:0)
我不熟悉IcoMoon,但你可以调整它以适应你的需要:
new Ext.XTemplate(
'<tpl for=".">',
'<div class="ProjectT"><img src="{[this.getIcon(values.strType)]}" />  -  {strTitle}</div>',
'</tpl>',
{
getIcon: function(strType){
switch (strType)
{
case "x": return "x.png";
//etc...
}
}
}
)
答案 1 :(得分:0)
创建一个CSS类。 将你的{variable}包裹在一个 为您创建的CSS类提供span,并在类中将字体定义为Icomoon。