I'm trying to change hflex
inside listcell like that but hflex
doesn't take by consideration.
<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>
hflex
attribute should be used in the list headers rather than in the cells:Read more here and here