具有子行的GWT 2.5 DataGrid SelectionModel

时间:2012-07-31 15:56:55

标签: gwt celltable selectionmodel gwt-2.5

使用TableBuilder创建行和子行时,选择模型无法按预期工作。 单击子视图的复选框时,未选择该行,而是选择父行。

我试图重载onBrowserEventCheckboxCell以手动处理选择,但似乎DataGrid本身在按下复选框时触发了选择事件。

如果行和子行来自同一类型,如何添加支持行和子行的选择模型?

1 个答案:

答案 0 :(得分:0)

@Override
public void onBrowserEvent(Context context, Element elem, final T object,
        NativeEvent event) {
    // The provided row is always the root row, so we need to find the
    // correct one when a sub row was edited
    actualIndex = context.getSubIndex();
    actualObject = object;
    if (0 != context.getSubIndex() && object instanceof RowDTO) {
        actualIndex = context.getSubIndex();
        actualObject = (T) ((RowDTO) object).getChild(actualIndex - 1);
        context = new Context(context.getIndex(), context.getColumn(),
                actualObject, actualIndex);
    }

    ValueUpdater<C> valueUpdater = (getFieldUpdater() == null) ? null
            : new ValueUpdater<C>() {
                @Override
                public void update(C value) {
                    getFieldUpdater().update(actualIndex, object, value);
                }
            };

    getCell().onBrowserEvent(context, elem, getValue(actualObject), event,
            valueUpdater);
}