动态更改NatTable中特定单元格的行前景色

时间:2018-04-05 15:59:17

标签: java nattable

你有没有建议动态改变单元格的颜色,我在下面尝试但是当表格没有那些标签(“FAILURE”)时,即使该行仍然是彩色的。当表中没有FAILURE标签时,我想恢复彩色单元格的颜色。

private static final String FAILURE = "FAILURE";
void example(){
final DefaultBodyLayerStack bodyLayer = underlyingLayer.getBodyLayer();



        // Custom label "FAILURE" for cell
        IConfigLabelAccumulator cellLabelAccumulator = new IConfigLabelAccumulator() {
            Integer rowCount = null;

            @Override
            public void accumulateConfigLabels(LabelStack configLabels,
                    int columnPosition, int rowPosition) {
                int rowIndex = bodyLayer.getRowIndexByPosition(rowPosition);

                for (GridConsoleRow gridConsoleRow : underlyingLayer.getBodyDataProvider().getList()) {
                    if (StringUtils.equals(gridConsoleRow.getLogLevel().trim(), FAILURE)) {
                            rowCount = bodyLayer.getPreferredRowCount()-1;
                            break;
                        }
                    }

                    if (rowCount != null && rowIndex == rowCount.intValue()) {
                    configLabels.addLabel(FAILURE);
                    }
                }
            };
        bodyLayer.setConfigLabelAccumulator(cellLabelAccumulator);

        // Custom style for label "FAILURE"
        natTable.addConfiguration(new AbstractRegistryConfiguration() {
            @Override
            public void configureRegistry(IConfigRegistry configRegistry) {
                Style cellStyle = new Style();
                cellStyle.setAttributeValue(
                        CellStyleAttributes.FOREGROUND_COLOR,
                        GUIHelper.COLOR_RED);
                configRegistry.registerConfigAttribute(
                        CellConfigAttributes.CELL_STYLE, cellStyle,
                        DisplayMode.NORMAL, FAILURE);

            }
        });
    }

1 个答案:

答案 0 :(得分:0)

您是否调试过FAILURE标签确实不存在? NatTable仅显示它应该显示的内容,因此如果您仅为FAILURE标签注册了红色背景的样式,它将仅呈现具有该标签的红色行。说实话,我不理解你IConfigLabelAccumulator的逻辑。可能rowCount成员是原因,因为如果没有失败,你再也不会将它重新设置回null。不知道为什么你无论如何将这些信息存储在一个成员变量中。