0

简短的问题:

我有一个可以在运行时更改分组条件的组(请参阅下面长问题中的详细信息)。我可以在组页眉/页脚中显示组的当前值(例如,按分支分组 - 显示分支名称,按客户端分组 - 客户端名称等)?

长问题:

我想允许我的用户即时更改分组条件。我可以通过两种方式相对容易地实现这一点:

  1. 通过 BIRT 设计时 API(传递给适当的行/数据集列值)。
  2. 通过报告参数。将数据集列名称作为参数值传递,并在组条件中使用它

    eval(params["groupColumnName"].value)

我的问题是我必须在组页眉中显示当前组的值(并且很高兴在组页脚中重复它)。

我不知道如何为选项 1 实现这一点。(设计时 API)。

对于选项 2。我可以在组页眉/页脚中重复 2. 中的 Java 脚本,但这不是我想要实现的。我不想重复那个繁琐的 java 脚本 2-3 次。我能否以某种方式在组级别定义该值(类似于组的命名查询),然后在组条件、页眉和页脚中重用它?

可能的 BIRT 允许按组名显示分组的当前值吗?

欢迎任何想法。

4

2 回答 2

2

您可以通过以下两种方式之一实现选项 2:

  1. 使用计算参数的公式向数据集添加计算列,并根据报告中的要求按/包含计算列。
  2. 如果您使用的是 SQL 数据源,请在查询的 SELECT 子句中添加一个新字段作为 CASE WHEN参数值... 并根据报告中的要求分组/包含新字段。
于 2012-06-02T09:53:39.830 回答
0

我所做的 - 通过 DataItem 和 TextItem 的 API 更改组页眉/页脚。

以防万一有人想现在我的解决方法:

    private static void processRowHandle(SlotHandle pSlotHandle, ReportGroup pGroupInfo) throws SemanticException {
    if (pSlotHandle == null) return;
    for(Object obj : pSlotHandle.getContents()){
        if (obj instanceof RowHandle){
            SlotHandle cells = ((RowHandle)obj).getCells();
            if (cells == null) continue;
            for(Object item : cells.getContents()){
                if (item instanceof CellHandle){
                    SlotHandle content = ((CellHandle)item).getContent();
                    if (content == null) continue;
                    for(Object cell : content.getContents()){
                        if (cell instanceof DesignElementHandle) processGroupLabels((DesignElementHandle) cell, pGroupInfo);
                    }
                }
            }
        }
    }
}

private static void processGroupLabels(DesignElementHandle pElementHandle, ReportGroup pGroupInfo) throws SemanticException {
    if (pElementHandle instanceof DataItemHandle){
        DataItemHandle dataItemHandle = (DataItemHandle)pElementHandle;
        if (pGroupInfo.getOldBindingName().equals(dataItemHandle.getResultSetColumn())){
            dataItemHandle.setResultSetColumn(pGroupInfo.getNewColumn().getBindingNameText());
        }
    }
    if (pElementHandle instanceof TextItemHandle){
        String newColumnBindingText = ExpressionUtil.createRowExpression(pGroupInfo.getNewColumn().getBindingNameText());
        String content = ((TextItemHandle)pElementHandle).getContent().replace(pGroupInfo.getOriginalExpression(), newColumnBindingText);
        ((TextItemHandle)pElementHandle).setContent(content);
    }
}
于 2012-07-12T05:31:08.593 回答