我正在使用sencha touch开发一个Web应用程序,我正在使用sencha架构师,我想在我的list itemtpl中添加一个条件来查看客户余额的差异:
balance>=0 --> green
balance<0 --> red
这是我的基本项目:
<table width="100%"><tr>
<td>{c_name}</td>
<td width="95px">
<div style="width:95px;height:100%;background:#088cfc;text-align:center;color:#fff;">{balance}</div>
</td>
</tr>
</table>
如何使用sencha架构师IDE 添加xtemplate 并将其链接到我的列表?
谢谢,
答案 0 :(得分:1)
老问题,但是在处理如何“在建筑师中使用XTemplate”时,我想要回答同样的问题,这是标题陈述和给出的答案实际上并没有向初始用户显示如何执行此操作的答案在我看来,在建筑师。
所以步骤是:
答案 1 :(得分:0)
我实际上在架构师中使用XTemplate只是使用>
和<
而不是'&lt;'和'&gt;'在你的条件下:
如果余额&gt; 0 ==&gt;使用:如果余额&gt; 0见下文:
<table width="100%"><tr>
<td>{c_name}</td>
<td width="95px">
<tpl if="balance > 0">
<div style="border-radius:5px;;width:95px;height:100%;background:#088cfc;text-align:center;color:#fff;font-size:12px;height:23px;padding-top:4px;">{balance} ₪</div>
</tpl>
<tpl if="balance < 0">
<div style="border-radius:5px;;width:95px;height:100%;background:#f00;text-align:center;color:#fff;font-size:12px;height:23px;padding-top:4px;">{balance} ₪</div>
</tpl>
</td>
</tr>
</table>