gpt4 book ai didi

java - SmartGWT ListGrid - 从选择中排除字段

转载 作者:行者123 更新时间:2023-12-01 14:52:24 24 4
gpt4 key购买 nike

我想请求您帮助解决以下问题。

我有一个 SmartGwt ListGrid,其中有多行。这个ListGrid有一个SelectionChangedHandler,它工作得很好。

我向此 ListGrid 添加了一个特殊列 (ListGridField),基本上我想防止单击时触发选择更改事件。

这个特殊列有自己的 recordclickHandler。

我只想排除此列形式更改 ListGrid 中的选定记录。

据您所知,有什么方法可以做到这一点吗?

提前致谢。

最佳答案

由于行选择事件不会告诉您单击了哪个单元格,因此无法告诉您哪一列,我认为您需要使单元格可选择,并且如果单元格位于排除的范围内,则忽略该事件专栏。

myGrid.setCanSelectCells(true);

myGrid.addCellSelectionChangedHandler(new CellSelectionChangedHandler() {
public void onCellSelectionChanged(CellSelectionChangedEvent event) {
CellSelection selection = countryGrid.getCellSelection();

//use to determine if excluded column is clicked:
int[][] selectedCells = selection.getSelectedCells();

//use to get selected row:
ListGridRecord record = selection.getSelectedRecord();

//etc...
}
}

关于java - SmartGWT ListGrid - 从选择中排除字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14704834/

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