English 中文(简体)
如果在 iReport 中表达式有效, 如何删除表格中的行?
原标题:How to erase rows in a table if an expression is valid in iReport

我在《i Report》中有一张有3个字段(A、B、C)的表格。如果字段C不是空的,我会打印行。例如,如果我的数据来源中有2个记录:

  1. A=第一,B=第二,C=第三

  2. A=上,B=下,C=NULL

表格必须只有第一行。

我尝试在每个单元格中插入此表达式( 在“ 表示时打印” 属性中 ) :

!$F{C}.equals(null)

但这样的结果是第二行是空的(但可见)。

编辑 : 在第一个答案( 现在被删除) 之后, 表格中的列类似 :

<jr:column ...>
<jr:columnHeader ...>
   <staticText>
    <reportElement .../>
        <text><![CDATA[ID]]></text>
   </staticText>
</jr:columnHeader>
<jr:detailCell ...>
   <textField isBlankWhenNull="false">
    <reportElement ... isRemoveLineWhenBlank="true">
        <printWhenExpression><![CDATA[$F{ID}!=null]]></printWhenExpression>
    </reportElement>
        <textFieldExpression><![CDATA[$F{ID}]]></textFieldExpression>
   </textField>
</jr:detailCell>
</jr:column>
<jr:column ...>
<jr:columnHeader ...>
    <staticText>
        <reportElement .../>
        <text><![CDATA[CITY]]></text>
    </staticText>
</jr:columnHeader>
<jr:detailCell ...>
    <textField isBlankWhenNull="false">
        <reportElement ... isRemoveLineWhenBlank="true">
            <printWhenExpression><![CDATA[$F{ID}!=null]]></printWhenExpression>
        </reportElement>
        <textFieldExpression><![CDATA[$F{CITY}]]></textFieldExpression>
    </textField>
</jr:detailCell>
</jr:column>

The data source is a xml file. I ve tried also with isBlankWhenNull="true" but with no change. Here a screen of the result: tab

最佳回答

当您在字段上打印表达式时,只有字段将被删除。因此,空间将保持不变。在细节带上插入相同的表达式,然后再试一次。

<强>编辑:

进一步审视问题, 我注意到在表格元素的详细级别上, 无法在表格元素的详细级别略去记录( 表达式时打印) 。 该选项不存在, 正如您在 iReport 和 < a href=> 中可以看到的那样 。 http:// jasperreports. sourceforge. net/ xsd/ particults. xsd” rel = “ nofollow” >schema 定义 < /a> 。 此外, 原因似乎在于 < code> is BlankhournNull=“ true” 是无效的, 原因是, 尽管文本字段是空的, 细节行仍然占到分配的高度。 另外, 您试图修改的打印时间表达方式适用于整个表格, 而不是行 。 因此似乎有可能按您所希望的方式行事 。

在这里,我给你这些步骤 解决你的问题:

  1. Update the XPath query to your dataset run property (right click > edit table datasource from table designer view) so that the records where C is null are omitted.
  2. Choose your sub dataset and select "Use datasource expression" from Connection / Datasource expression menu.
  3. Insert the following expression:

((( net. sf.jasperreports. engine. data. JRXmlData source) $P {REPORT_ DATA_ SOURCE}). subData source ("/root[ c. =] )

祝你好运

问题回答

I found another solution to this issue: For the dataset used for the table, adding a Filter Expression, e.g. $F{dateRemoved}==null.

这样一来, 空行将被删除 。

直接回答问题:

  1. After using -> Print When Expression
  2. 仅上方一英寸,检查选项“空白时移动线”

  3. 100%工作





相关问题
Tools to generate reportanalytics feeds from google

Can you recommend any programmable tools/extensions that can be used to generate reports out of google analytics feed on th fly? Essentially some kind of pdf generator from feed, not sure though. Or ...

Asynchronous generation of PDF - error handling

We have some code that uses a third party component to generate a PDF from a URL that we pass it (the URL being a page within our application). In the code, we instantiate the PDF generator and it ...

HTML to PDF vs. Programmatically creating PDF via PHP

I have a PHP application that needs to generate some PDF invoices and PDF timesheets with nice headers/footers. Some Stackoverflow users recommend using TCPDF to create the PDF documents. In my ...

Open PDF Programmatically in One Page View

I have a 2005 Reporting Services report that I display as a PDF through the report viewer control. I would like to know how I can have the PDF be viewed in the "one page at a time mode". Right now it ...

iTextSharp : pdfPTable overlapping with other content

I am using iTextsharp to generate a PDF document from C# application. I am having a PdfPTable to display some tabular data. My problem in the table is overlapping with the other paragraph .Is there ...

(pdflib) Table of contents with dynamic page numbers

I m on pdflib 7 under php5 and I m drawing a statistical report with several sub topics over several pages. Now, I want to include a table of contents on the first page where every sub topic is ...

热门标签