gpt4 book ai didi

java - CellList 内的 gwt CheckBoxCell

转载 作者:行者123 更新时间:2023-12-02 00:38:45 25 4
gpt4 key购买 nike

我正在尝试创建一个包含复选框项目列表的滚动面板。我的主要问题是用 CheckboxCell 构建 CellList。这是导致编译时错误的原因的片段。

CheckboxCell testCheckBox = new CheckboxCell();

CellList<String> cellList = new CellList<String>(testCheckBox);

错误消息:构造函数 CellList(CheckboxCell) 未定义。

如果这是错误的构造函数,正确的方法是什么?

最佳答案

尝试将 CellList 的类型更改为 Boolean。

CheckboxCell testCheckBox = new CheckboxCell();
CellList<Boolean> cellList = new CellList<Boolean>(testCheckBox);

更新:

有关各种单元格的更多示例(这是组合复选框+图片,但您可能想用文本替换图片):

http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellTree

这有点棘手,但这个展示还包含来源,所以可能想深入研究它们。

PS:更懒的解决方案是不使用 Cell Widgets 并制作自己的(扩展 Composite)组合/标签并将其放置在 FlexTable 中:)

关于java - CellList 内的 gwt CheckBoxCell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6986327/

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