Apache Royale:什么是 Jewel DataGrid rowHeight 属性 等效于 SDK 0.9.8#2556

Apache Royale : what is Jewel DataGrid rowHeight property equivalent on SDK 0.9.8#2556

我从 SDK 0.9.7 移动到 SDK 0.9.8#2556 是“最新的”。 Jewel Datagrid 上的 rowHeight 属性 似乎不再可用。 我没有找到如何设置默认行高。 (我希望所有行的高度都为 64 像素)。

我是否需要珠子或添加 itemrenderer 来设置高度?

如有任何帮助,我们将不胜感激

此致

我们从 PresentationModels 中可用的 TLC 组件中删除了 API,以避免重复 API 和增加额外的大小。

这是 Tour De Jewel 中的一个示例,它在 DataGridPresentationModel 中使用了 rowHeigh:

<j:DataGrid localId="dg4" height="205"
    change="dataGridChange(event.target as DataGrid, lb4)"
    dataProvider="{productModel.productList}">
    <j:columns>
        <j:DataGridColumn label="Images" dataField="image" columnWidth="100" 
                        itemRenderer="itemRenderers.ImageDataGridItemRenderer"/>
        <j:DataGridColumn label="Title" dataField="title" columnWidth="140"/>
        <j:DataGridColumn label="Sales" dataField="sales" columnWidth="80" align="right"/>
    </j:columns>
    <j:beads>
        <j:DataGridPresentationModel rowHeight="54"/>
    </j:beads>
</j:DataGrid>