• Nattable 为特定列的不同值添加不同Label的两种方法


    Option 1:

    第一步: 实例化一个CellOverrideLabelAccumulator 对象, 调用registerOverride 方法。

    代码示例:

    CellOverrideLabelAccumulator<youRow> cellLabelAccumulator = new CellOverrideLabelAccumulator<>(bodyDataProvider);
    cellLabelAccumulator.registerOverride(value1, 1, label1);  // the second parameter is the column position, 1 means the second column
    cellLabelAccumulator.registerOverride(value2, 1, label2);
    bodyDataLayer.setConfigLabelAccumulator(cellLabelAccumulator);

    第二步: 实例化一个configuration, 并添加到Nattable 实例。

    class YourConfiguration extends AbstractRegistryConfiguration {
    
            @Override
            public void configureRegistry(IConfigRegistry configRegistry) {
                 // Your custom registry code here , should involve the label defined in Step 1
            }
    
    }
    
    YourConfiguration yourConfiguration = new YourConfiguration();
    natTable.addConfiguration(yourConfiguration); 

    Option 2:

    第一步: 从CellOverrideLabelAccumulator 派生出一个自定义的子类,重写accumulateConfigLabels 方法

    class YourLabelAccumalator extends CellOverrideLabelAccumulator<YourRow> {
            private ListDataProvider<YourRow> thisDataProvider;
    
            public YourLabelAccumalator(ListDataProvider<YourRow> dataProvider) {
                super(dataProvider);
                thisDataProvider = dataProvider;
            }
    
            @Override
            public void accumulateConfigLabels(LabelStack configLabels, int columnPosition, int rowPosition) {
                
                // should check the column position first
                if (columnPosition == 1) {
                    Object value=  this.thisDataProvider.getDataValue(1, rowPosition);
                    
                    if (value== value1) {
                        configLabels.addLabel(label1);  // should defined label1 as String
                    } else if (value== value2) {
                        configLabels.addLabel(label2); //  same as above
                    }
                }
                
            }
        }
    

    第二步: 实例化一个configuration, 并添加到Nattable 实例 (同Option 1 的第二步一样)

  • 相关阅读:
    【iOS开发-36】Bundle Identifier的中文字符变成-的问题
    js html 页面倒计时 精确到秒
    Material DesignDrawerLayout的旋转箭头的实现方式。
    C# 用 * 输出两个等腰三角形组成的菱形
    学习笔记(九)并发(三)
    外派到某项目帮忙,但受到排斥怎办?
    nginx学习
    ftk学习记(滑动条篇)
    使用JDBC改变Oracle的session參数 NLS_DATE_FORMAT
    Python中调用自然语言处理工具HanLP手记
  • 原文地址:https://www.cnblogs.com/wenchunl/p/8608461.html
Copyright © 2020-2023  润新知