2015-06-08 78 views
-1

我試圖在列表單元格內更改hflex,但hflex並未考慮。如何更改列表框中的hflex zk

<listcell> 
    <listbox model="@load(each.taches)"> 
     <template name="model" var="item"> 
      <listitem visible="@load(not empty each.taches)"> 
       <listcell hflex="2"> 
        <progressmeter style="span.z-progressmeter-image" value="@load(item.progres)" width="110px" 
            height="16px"> 
        </progressmeter> 
       </listcell> 
       <listcell hflex="min" style="text-align:center;"> 
        <label width="45px" sclass="badge bg-primary" value="@load(c:cat(item.progres,'%'))"/> 
       </listcell> 
+0

你必須向我們展示您的代碼之前,我們可以幫助您。 – Dragondraikk

回答

1

hflex屬性應在列表標題中使用,而不是在細胞:

<listcell> 
    <listbox model="@load(each.taches)"> 
     <listhead> 
      <listheader hflex="2"/> 
      <listheader hflex="min"/> 
     </listhead> 
     <template name="model" var="item"> 
      <listitem visible="@load(not empty each.taches)"> 
       <listcell> 
        <progressmeter style="span.z-progressmeter-image" value="@load(item.progres)" width="110px" 
            height="16px"> 
        </progressmeter> 
       </listcell> 
       <listcell style="text-align:center;"> 
        <label width="45px" sclass="badge bg-primary" value="@load(c:cat(item.progres,'%'))"/> 
       </listcell> 

更多herehere

+0

謝謝,它wokrs :) –