flex datagrid itemRenderer height?

时间:2010-11-18 20:06:07

标签: flex datagrid itemrenderer

我有一个datagrid列,我正在使用itemRenderer。像这样的东西

<mx:itemRenderer>
    <mx:Component>
        <mx:HBox width="100%" verticalAlign="middle" horizontalGap="0" horizontalScrollPolicy="off" height="22">
            ...
        </mx:HBox>
    </mx:Component>
</mx:itemRenderer>

如果datagrid具有任何实体,则行高可以正常。但是,如果没有条目,行高度不再是22.无论如何要解决这个问题吗?

(我有两个数据网格彼此相邻。一个总是填充,因此它具有正确的高度。当没有填充第二个并且行不对齐时,它看起来非常糟糕。)

1 个答案:

答案 0 :(得分:1)

rowHeight的{​​{1}}属性设置为22(或您喜欢的任何值)。然后,只需将DataGridHBox的高度设置为100%。