2014-11-17 54 views
0

我使用煎茶觸摸開發一個web應用程序,我使用煎茶建築師,我想補充一個條件,我的名單itemtpl在客戶的餘額查看區別:如何在sencha架構內部使用Xtemplate?

balance>=0 --> green 

balance<0 --> red 

這是我的基本itemtpl:

<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> 

如何添加xtemplate 使用Sencha建築師IDE並將其鏈接到我的名單?

謝謝你,

回答

0

我實際使用XTemplate在建築師只是使用&gt;&lt;而不是 '<' 和 '>' 你的條件:

如果餘額> 0 ==>使用:如果平衡> 0見下圖:

<table width="100%"><tr> 
    <td>{c_name}</td> 
    <td width="95px"> 
     <tpl if="balance &gt; 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 &lt; 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> 
+0

這是答案,只需使用'<' and '>'的ascii代碼'我會把它們放在這裏用空格'& g t ;'和'& l t ;' – user2005049

1

老問題,但如何「在建築師使用的XTemplate」打交道時,我想回答同樣的問題,這就是標題狀態和Answe在我看來,r給出的實際上並沒有向初始用戶展示如何在Architect中執行此操作的答案。

因此,步驟是:

  1. 您的組件,以便添加到建築師帆布或內什麼都部件所使用。
  2. 下一頁轉到CONFIGS列表,找到「程序配置」項,然後點擊加號 enter image description here

  3. 下一個,你會得到一個可以讓你更新和處理任何當前配置設置或添加自己的。我的函數被稱爲「processMyView」(我用我的例子一個數據視圖,ERGO名稱)

  4. 添加一些JavaScript創建了「第三方物流」
  5. 確保你的結束返回「配置」參數功能 enter image description here

在我的例子,我與標題和所有者,因此最終的結果看起來是這樣的文件列表。

enter image description here

在你正在失意建築師隨時結束的,這可能是你可以藉此避開IDE的剛性的配置設置的方法之一。

相關問題