gpt4 book ai didi

GWT 数据网格大小调整

转载 作者:行者123 更新时间:2023-12-04 16:00:14 25 4
gpt4 key购买 nike

我有一个 DataGrid,我想在向其中添加行时垂直增长(高度)。要添加到网格的小部件应直接位于 DataGrid 下方。我该怎么做呢?

“GWT DataGrid 自动高度”的答案太晦涩了(如果是的话)。我尝试将 DataGrid 放在 ResizeLayoutPanel 中,但它只显示了 datagrid 标题。

最佳答案

对于那些仍在苦苦挣扎的人 CellTable (自动高度,寻呼机总是在最后一行)和 DataGrid (固定标题但高度应该固定,即使您有一行数据,寻呼机也将保持在同一位置)。

不要忘记它们扩展了相同的类:AbstractCellTable
所以你可以很容易地调整你的代码(注意 TableType 只是我创建的一个枚举):

if (tableType == TableType.CELLTABLE) {
// CellTable
CustomTableWidgetCellTableResource resource = GWT.create(CustomTableWidgetCellTableResource.class);
table = new CellTable<T>(10, resource);
} else {
// DataGrid
CustomTableWidgetDataGridResource resource = GWT.create(CustomTableWidgetDataGridResource.class);
table = new DataGrid<T>(10, resource);
table.setHeight("470px"); // Default height
}

关于GWT 数据网格大小调整,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11025540/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com