如何在TextField中添加项目符号

时间:2013-11-27 10:47:15

标签: pdf jasper-reports

我想在我的静态文本和文本字段中添加项目符号,我将样式标记添加到jrxml但是它对我不起作用:

以下是示例:

TextField:

<textField isBlankWhenNull="true">
    <reportElement uuid="cfd514bc-d1c5-4369-b10d-71042b046e37" x="11" y="0" width="400" height="12"/>
    <textElement/>
    <textFieldExpression><![CDATA[<style size="40">.</style>$F{LMSG}]]></textFieldExpression>
</textField>

静态文本:

<staticText>
    <reportElement uuid="c1485aba-09a4-4c7b-9106-0893341f1368" x="44" y="107" width="309" height="15"/>
    <textElement>
        <font size="9"/>
    </textElement>
    <text><![CDATA[<style size="40">.</style>Je déduis cet avoir de ma commande]]></text>
</staticText>

2 个答案:

答案 0 :(得分:10)

您可以使用样式标记

尝试使用<li>代码。

样本

jrxml 文件:

<?xml version="1.0" encoding="UTF-8"?>
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="bullet_sample" language="groovy" pageWidth="595" pageHeight="842" whenNoDataType="AllSectionsNoDetail" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="aa7ced41-689a-4b8d-94aa-ee79c243a7a8">
    <title>
        <band height="79" splitType="Stretch">
            <textField>
                <reportElement uuid="bf39def6-a3a7-4fa1-9e99-e488b3567974" x="159" y="31" width="100" height="20"/>
                <textElement markup="styled"/>
                <textFieldExpression><![CDATA["<li>Text with bullet</li>"]]></textFieldExpression>
            </textField>
        </band>
    </title>
</jasperReport>

结果将是(通过 iReport 中的预览):

enter image description here


如果使用字段,则右侧表达式为:

<textField>
    <reportElement x="171" y="0" width="100" height="20"/>
    <textElement markup="styled"/>
    <textFieldExpression><![CDATA["<li>" + $F{fieldName} + "</li>"]]></textFieldExpression>
</textField>

注意

答案 1 :(得分:0)

我使用了 <li> 标签,但它引入了看起来不太好的填充。所以,我使用了“\u2022”,它给出了一个像

这样的圆形符号
                <textFieldExpression><![CDATA["\u2022 Line1\n\u2022 Line2"]]></textFieldExpression>

所以,这看起来更干净