我有带有自定义 itemRenderer 的珠宝列表。
我的目标是将它用作数据网格,因为数据网格在宝石中不可用。
<j:Card width="500" id="cardDetail" height="550">
<j:List id="lsDetail" width="100%" height="420"
itemRenderer="detail_itemrenderer">
</j:List>
</j:Card>
这是detail_itemrenderer
<j:HGroup>
<j:Label html="{data['field1']}" multiline="true" width="100"/>
<j:Label html="{data['field2']}" multiline="true" width="300"/>
<j:Label html="{data['field3']}" multiline="true" width="100"/>
<j:Label html="{data['field4']}" multiline="true" width="200"/>
</j:HGroup>
标签的总长度是 800,但列表的长度只有 500。所以当我运行代码时,field4 标签没有显示出来。
问题是列表没有水平滚动条。有什么我想念的财产吗?以及如何设置?
谢谢