让 Flex 数据网格适合数据
我有几行文本数据,其范围在 0 到 100 之间,并且所有数据都需要同时在屏幕上可见。 网格的默认行为很好,直到 rows * rowHeight > 网格高度。
基本上我需要一个挂钩到项目高度或行高来根据网格的高度计算它。 我已将 paddingTop 和 paddingBottom 设置为零,但行之间仍然存在大量空白。
我的数据网格组件...
<mx:DataGrid xmlns:mx="http://www.adobe.com/2006/mxml"
creationComplete="OnCreationComplete()"
paddingTop="0"
paddingBottom="0"
>
<mx:Script>
<![CDATA[
private function OnCreationComplete():void
{
//setRowHeight(10);
}
override protected function setRowHeight(v:Number):void
{
super.setRowHeight(v);
}
]]>
</mx:Script>
</mx:DataGrid>
setRowHeight() 有帮助,但是如果我将行高设置为 10 之类的值,则单元格的 itemRender 会大于单元格。
I have rows of text data that can vary between 0 and 100, and all need to be visible on the screen at one time. The default behavior is fine for the grid until the rows * rowHeight > gridHeight.
Basically I need a hook into the item height, or row height to calculate it based on the height of the grid. I've set paddingTop and paddingBottom to zero, but there is still a considerable amount of white space in between rows.
My datagrid component...
<mx:DataGrid xmlns:mx="http://www.adobe.com/2006/mxml"
creationComplete="OnCreationComplete()"
paddingTop="0"
paddingBottom="0"
>
<mx:Script>
<![CDATA[
private function OnCreationComplete():void
{
//setRowHeight(10);
}
override protected function setRowHeight(v:Number):void
{
super.setRowHeight(v);
}
]]>
</mx:Script>
</mx:DataGrid>
setRowHeight() helps, but the itemRender for the cell bigger than the cell, if I set the row height to something like 10.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能需要查看 DataGrid.variableRowHeight 属性,因为当该属性设置为 false(默认值)时,所有行的高度都将与最大的 itemRenderer 相同。 您还可以考虑为每个 DataColumn 编写自己的 itemRenderer。
如果您真正想做的只是根据 dataProvider 中的项目数设置行高,则可以像这样设置 DataGrid.rowHeight 属性(假设您的网格具有固定高度,例如 100%):(
我我在这里发言,因为如果您最终得到一个向上舍入的小数值,您将需要一个滚动条)
正如我认为您已经注意到的那样,这种方法的唯一问题是 itemRenderer 可能无法正确显示连续太小了。 我想您可以通过根据渲染器的高度更改渲染器中的字体来解决此问题。
You might want to look at the DataGrid.variableRowHeight property as, when this is set to false (the default) all rows will be the same height as the largest itemRenderer. You could also look into writing your own itemRenderer for each DataColumn.
If all you really want to do is set the row height based on the number of items in the dataProvider though, you could just set the DataGrid.rowHeight property like this (assuming your grid has a fixed height, say 100%) :
(I'm taking the floor here because if you end up with a fractional value that rounds up, you'll need a scroll bar)
The only problem with this approach, as I think you've noticed, is that the itemRenderer might not display properly in a row that's too small. I guess you could solve this by changing the font within the renderer based on its height.
谢谢inferis,这对我帮助很大。 这是我的最终网格组件。 由于有一些标注,它并不是真正独立的,但如果它可以帮助其他人开始工作,那就太好了!
Thank you inferis, that helped me a lot. This is my final grid component. It's not really self contained because of a few call-outs, but if it helps someone else get theirs to work, great!