포함 된 보고서가 다른 요소 위에 렌더링되지 않도록하려면 어떻게합니까?

오우거

"vehicleListSubReport.jrxml", "locoSubreport.jrxml"및 "crewSubreport.jrxml"이라는 세 개의 하위 보고서가 포함 된 마스터 보고서가 있습니다. 데이터 소스는 각각 "vehicleReport", "locoReport"및 "crewReport"필드입니다. 모두 JRDataSource 유형의 객체입니다.

몇 가지 문제가 있지만 근본 원인이 하나 일 수 있다고 생각하므로 동일한 질문에서 모두에 대해 질문하고 있습니다. 첫째, 코드 :

    <?xml version="1.0" encoding="UTF-8"?>
<!-- Created with Jaspersoft Studio version last-->
<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="X2010" language="groovy" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="25640552-4299-40b4-8655-a64e83b16458">
    <property name="com.jaspersoft.studio.unit." value="pixel"/>
    <property name="com.jaspersoft.studio.unit.pageHeight" value="pixel"/>
    <property name="com.jaspersoft.studio.unit.pageWidth" value="pixel"/>
    <property name="com.jaspersoft.studio.unit.topMargin" value="pixel"/>
    <property name="com.jaspersoft.studio.unit.bottomMargin" value="pixel"/>
    <property name="com.jaspersoft.studio.unit.leftMargin" value="pixel"/>
    <property name="com.jaspersoft.studio.unit.rightMargin" value="pixel"/>
    <property name="com.jaspersoft.studio.unit.columnWidth" value="pixel"/>
    <property name="com.jaspersoft.studio.unit.columnSpacing" value="pixel"/>
    <style name="Title" fontName="Times New Roman" fontSize="50" isBold="true" pdfFontName="Times-Bold"/>
    <style name="SubTitle" forecolor="#736343" fontName="Arial" fontSize="18"/>
    <style name="Column header" forecolor="#666666" fontName="Arial" fontSize="12" isBold="true"/>
    <style name="Detail" fontName="Arial" fontSize="12"/>
    <style name="Row" mode="Transparent">
        <conditionalStyle>
            <conditionExpression><![CDATA[$V{REPORT_COUNT}%2 == 0]]></conditionExpression>
            <style backcolor="#E6DAC3"/>
        </conditionalStyle>
    </style>
    <queryString>
        <![CDATA[]]>
    </queryString>
    <field name="trainNumber" class="java.lang.String"/>
    <field name="crewReport" class="net.sf.jasperreports.engine.JRDataSource"/>
    <field name="trainType" class="java.lang.String"/>
    <field name="origin" class="java.lang.String"/>
    <field name="dangerousGoods" class="java.lang.Boolean">
        <fieldDescription><![CDATA[]]></fieldDescription>
    </field>
    <field name="outOfGauge" class="java.lang.Boolean"/>
    <field name="trainDate" class="java.util.Date"/>
    <field name="approvedLength" class="java.lang.Integer"/>
    <field name="destination" class="java.lang.String"/>
    <field name="specialLoad" class="java.lang.Boolean"/>
    <field name="submittedBy" class="java.lang.String"/>
    <field name="phone" class="java.lang.String"/>
    <field name="submittedAtDateTime" class="java.util.Date"/>
    <field name="fax" class="java.lang.String"/>
    <field name="numberOfVehicles" class="java.lang.Integer"/>
    <field name="tonnesHauled" class="java.lang.String"/>
    <field name="tonnesGross" class="java.lang.String"/>
    <field name="totalLength" class="java.lang.Double"/>
    <field name="locoReport" class="net.sf.jasperreports.engine.JRDataSource"/>
    <field name="vehicleReport" class="net.sf.jasperreports.engine.JRDataSource"/>
    <field name="railOperatorName" class="java.lang.String"/>
    <field name="submitter" class="java.lang.String"/>
    <field name="consistLocation" class="java.lang.String"/>
    <group name="Group1">
        <groupExpression><![CDATA[(int)($V{REPORT_COUNT}/15)]]></groupExpression>
        <groupFooter>
            <band height="50" splitType="Stretch">
                <printWhenExpression><![CDATA[$F{vehicleReport} != null]]></printWhenExpression>
            </band>
        </groupFooter>
    </group>
    <group name="Group2">
        <groupExpression><![CDATA[(int)($V{REPORT_COUNT}/5)]]></groupExpression>
        <groupFooter>
            <band height="107" splitType="Stretch"/>
        </groupFooter>
    </group>
    <background>
        <band splitType="Stretch"/>
    </background>
    <title>
        <band height="65" splitType="Stretch">
            <staticText>
                <reportElement style="Title" x="80" y="0" width="472" height="62" uuid="b89a83c9-c1a2-4ab6-85a2-88ba23795dd3"/>
                <textElement verticalAlignment="Middle">
                    <font pdfFontName="Times-Roman"/>
                </textElement>
                <text><![CDATA[X20.10 Report]]></text>
            </staticText>
        </band>
    </title>
    <pageHeader>
        <band splitType="Stretch"/>
    </pageHeader>
    <columnHeader>
        <band height="5" splitType="Stretch">
            <line>
                <reportElement positionType="FixRelativeToBottom" x="1" y="1" width="552" height="2" uuid="f93f01ef-7224-41b8-a330-380bec4336d6"/>
                <graphicElement>
                    <pen lineWidth="0.5" lineColor="#999999"/>
                </graphicElement>
            </line>
        </band>
    </columnHeader>
    <detail>
        <band height="400" splitType="Stretch">
            <staticText>
                <reportElement x="0" y="120" width="90" height="20" uuid="20c60332-1cff-4218-bfce-57cec3e447dd"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Train Number:]]></text>
            </staticText>
            <subreport runToBottom="true">
                <reportElement isPrintRepeatedValues="false" x="-20" y="220" width="595" height="45" uuid="4f24664e-5df0-4326-9b95-9939f93c48d4"/>
                <dataSourceExpression><![CDATA[$F{crewReport}]]></dataSourceExpression>
                <subreportExpression><![CDATA["crewSubreport.jasper"]]></subreportExpression>
            </subreport>
            <textField>
                <reportElement x="90" y="120" width="90" height="20" uuid="110c9328-d33c-4c0a-86e5-7f4ebe669b4f"/>
                <textFieldExpression><![CDATA[$F{trainNumber}]]></textFieldExpression>
            </textField>
            <staticText>
                <reportElement x="0" y="90" width="554" height="30" uuid="efaedffc-7d27-40f0-acc1-71797d91472c"/>
                <box>
                    <topPen lineWidth="1.0" lineStyle="Solid" lineColor="#000000"/>
                    <leftPen lineWidth="1.0" lineStyle="Solid" lineColor="#000000"/>
                    <bottomPen lineWidth="1.0" lineStyle="Solid" lineColor="#000000"/>
                    <rightPen lineWidth="1.0" lineStyle="Solid" lineColor="#000000"/>
                </box>
                <textElement textAlignment="Center">
                    <font size="18"/>
                </textElement>
                <text><![CDATA[Train Details]]></text>
            </staticText>
            <staticText>
                <reportElement x="0" y="140" width="90" height="20" uuid="91493735-ab12-4068-9583-9edbbac7ca35"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Train Type:]]></text>
            </staticText>
            <staticText>
                <reportElement x="0" y="160" width="90" height="20" uuid="a3e483b0-59c4-494c-ad36-1ea30eb4c5f5"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Origin]]></text>
            </staticText>
            <staticText>
                <reportElement x="0" y="180" width="90" height="20" uuid="f5f23f73-3bdb-4b12-b9ec-d1946d1d249c"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Dangerous Goods:]]></text>
            </staticText>
            <staticText>
                <reportElement x="0" y="200" width="90" height="20" uuid="49aebc16-13db-4842-bb0f-23eac8f693a4"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Out of Gauge:]]></text>
            </staticText>
            <textField>
                <reportElement x="90" y="140" width="90" height="20" uuid="ff7d87fc-1087-4edf-b1ed-454ff8ae94f8"/>
                <textFieldExpression><![CDATA[$F{trainType}]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement x="90" y="160" width="90" height="20" uuid="7f109b0f-f4f4-48af-9a13-909b766dbd3c"/>
                <textFieldExpression><![CDATA[$F{origin}]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement x="90" y="180" width="90" height="20" uuid="67f7fd28-1cee-402d-8a35-523058ab5061"/>
                <textFieldExpression><![CDATA[$F{dangerousGoods} ? "Yes" : "No"]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement x="90" y="200" width="90" height="20" uuid="82586e0e-b6a7-43cf-9b1f-a12612396909"/>
                <textFieldExpression><![CDATA[$F{outOfGauge} ? "Yes" : "No"]]></textFieldExpression>
            </textField>
            <staticText>
                <reportElement x="280" y="120" width="100" height="20" uuid="94651700-a070-400e-a206-fd09170cf797"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Train Date:]]></text>
            </staticText>
            <textField pattern="dd/MM/yyyy">
                <reportElement x="380" y="120" width="100" height="20" uuid="2ea29a18-1d85-4a23-b9f6-17459ceafe0d"/>
                <textFieldExpression><![CDATA[$F{trainDate}]]></textFieldExpression>
            </textField>
            <staticText>
                <reportElement x="280" y="140" width="100" height="20" uuid="3ffe5495-6b91-424b-b652-c48c72b39a8f"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Approved Length:]]></text>
            </staticText>
            <staticText>
                <reportElement x="280" y="160" width="100" height="20" uuid="68bcc4c2-d6c0-426b-979c-c70bbd1c550c"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Destination:]]></text>
            </staticText>
            <staticText>
                <reportElement x="280" y="180" width="100" height="20" uuid="83e83257-d581-4fdd-8955-ef281357aaae"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Special Load:]]></text>
            </staticText>
            <textField>
                <reportElement x="380" y="140" width="100" height="20" uuid="0f1b2cf0-73a3-4106-904a-8a28b7717909"/>
                <textFieldExpression><![CDATA[$F{approvedLength}]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement x="380" y="160" width="100" height="20" uuid="7a006853-a10a-4759-889f-b9848a59d79b"/>
                <textFieldExpression><![CDATA[$F{destination}]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement x="380" y="180" width="100" height="20" uuid="521136d0-a51f-4ca1-bdce-6d0ed1cd5c76"/>
                <textFieldExpression><![CDATA[$F{specialLoad} ? "Yes" : "No"]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement x="90" y="50" width="90" height="20" uuid="36b52f46-6f49-4c75-88d0-27a221bc62ec"/>
                <textFieldExpression><![CDATA[$F{submittedBy}]]></textFieldExpression>
            </textField>
            <staticText>
                <reportElement x="0" y="50" width="90" height="20" uuid="2cad93ef-d94f-4479-93e7-7a232023dace"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Submitted By:]]></text>
            </staticText>
            <staticText>
                <reportElement x="0" y="70" width="90" height="20" uuid="90474202-ce8b-4657-bad1-71edc8557335"/>
                <text><![CDATA[Phone:]]></text>
            </staticText>
            <textField>
                <reportElement x="90" y="70" width="90" height="20" uuid="20d6f136-62e4-4332-9098-3355896ff4af"/>
                <textFieldExpression><![CDATA[$F{phone}]]></textFieldExpression>
            </textField>
            <textField pattern="dd/MM/yyyy HH:mm">
                <reportElement x="380" y="50" width="174" height="20" uuid="540bcba3-93ee-4877-b5a8-6f58db7c7398"/>
                <textFieldExpression><![CDATA[$F{submittedAtDateTime}]]></textFieldExpression>
            </textField>
            <staticText>
                <reportElement x="280" y="50" width="100" height="20" uuid="957ce926-9636-4625-b91f-78ecd3b8a200"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Submitted At:]]></text>
            </staticText>
            <staticText>
                <reportElement x="280" y="70" width="100" height="20" uuid="d8cf6e8b-9664-4012-b51d-6cdea49faf22"/>
                <text><![CDATA[Fax:]]></text>
            </staticText>
            <textField>
                <reportElement x="380" y="70" width="174" height="20" uuid="cc95ebda-f955-4eaf-9314-45e4a56c4fde"/>
                <textFieldExpression><![CDATA[$F{fax}]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement x="0" y="0" width="554" height="50" uuid="f7c297a9-e14e-44de-8769-5d483cfe4863"/>
                <textElement textAlignment="Center">
                    <font size="14" isBold="true"/>
                </textElement>
                <textFieldExpression><![CDATA["Consist for " + $F{railOperatorName} + " submitted by " + $F{submitter} + "\nConsist Location: " + $F{consistLocation}]]></textFieldExpression>
            </textField>
            <subreport runToBottom="true">
                <reportElement stretchType="RelativeToTallestObject" isPrintRepeatedValues="false" x="50" y="330" width="130" height="20" uuid="4f470a33-ef93-425d-951e-e53642df7771"/>
                <dataSourceExpression><![CDATA[$F{locoReport}]]></dataSourceExpression>
                <subreportExpression><![CDATA["locoSubreport.jasper"]]></subreportExpression>
            </subreport>
            <textField pattern="#0.00#;(#0.00#-)">
                <reportElement isPrintRepeatedValues="false" x="460" y="310" width="80" height="20" uuid="f182c7db-f00f-4107-bc33-93b30faf11a9"/>
                <textFieldExpression><![CDATA[$F{totalLength}]]></textFieldExpression>
            </textField>
            <textField pattern="#0.00#;(#0.00#-)">
                <reportElement isPrintRepeatedValues="false" x="280" y="310" width="80" height="20" uuid="c5f34099-ac0e-4634-9398-a96f93c052f6"/>
                <textFieldExpression><![CDATA[$F{tonnesHauled}]]></textFieldExpression>
            </textField>
            <staticText>
                <reportElement isPrintRepeatedValues="false" x="190" y="330" width="80" height="20" uuid="824478e7-fc00-4d16-8a39-6355baf4bc61"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Tonnes Gross:]]></text>
            </staticText>
            <staticText>
                <reportElement isPrintRepeatedValues="false" x="190" y="310" width="80" height="20" uuid="e0bc266a-56f2-4246-bea6-f31c4718046d"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Tonnes Hauled:]]></text>
            </staticText>
            <textField pattern="#0.00#;(#0.00#-)">
                <reportElement isPrintRepeatedValues="false" x="280" y="330" width="80" height="20" uuid="74e9ef61-e6e0-45fa-9966-9950c2f5a1e0"/>
                <textFieldExpression><![CDATA[$F{tonnesGross}]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement isPrintRepeatedValues="false" x="100" y="310" width="80" height="20" uuid="86833b59-3fe2-4c50-8d8e-18d80e082f75"/>
                <textFieldExpression><![CDATA[$F{numberOfVehicles}]]></textFieldExpression>
            </textField>
            <staticText>
                <reportElement isPrintRepeatedValues="false" x="0" y="330" width="40" height="20" uuid="c08f0b3c-0ddf-4cbb-b377-1f48b80fa383"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Locos:]]></text>
            </staticText>
            <staticText>
                <reportElement isPrintRepeatedValues="false" x="0" y="310" width="90" height="20" uuid="6a4a5d4b-5762-45d2-b54f-2167af8da5f8"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Number Vehicles:]]></text>
            </staticText>
            <staticText>
                <reportElement isPrintRepeatedValues="false" x="1" y="270" width="551" height="35" uuid="53e5c946-8e6d-44fa-8715-f193d224b489"/>
                <box>
                    <topPen lineWidth="1.0" lineStyle="Solid" lineColor="#000000"/>
                    <leftPen lineWidth="1.0" lineStyle="Solid" lineColor="#000000"/>
                    <bottomPen lineWidth="1.0" lineStyle="Solid" lineColor="#000000"/>
                    <rightPen lineWidth="1.0" lineStyle="Solid" lineColor="#000000"/>
                </box>
                <textElement textAlignment="Center">
                    <font size="18"/>
                </textElement>
                <text><![CDATA[Train Summary]]></text>
            </staticText>
            <staticText>
                <reportElement isPrintRepeatedValues="false" x="370" y="310" width="80" height="20" uuid="31012f66-602d-4892-82f4-d1187915046e"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Total Length:]]></text>
            </staticText>
            <subreport runToBottom="true">
                <reportElement stretchType="RelativeToTallestObject" isPrintRepeatedValues="false" x="-20" y="360" width="595" height="20" printWhenGroupChanges="Group1" uuid="8e2dbcb5-3c3f-4bb5-a606-39f6f2e8656a"/>
                <dataSourceExpression><![CDATA[$F{vehicleReport}]]></dataSourceExpression>
                <subreportExpression><![CDATA["vehicleListSubreport.jasper"]]></subreportExpression>
            </subreport>
        </band>
    </detail>
    <columnFooter>
        <band height="6" splitType="Stretch">
            <line>
                <reportElement positionType="FixRelativeToBottom" x="0" y="0" width="554" height="2" uuid="447d20b2-f65e-42ee-b2a8-69632882c668"/>
                <graphicElement>
                    <pen lineWidth="0.5" lineColor="#999999"/>
                </graphicElement>
            </line>
        </band>
    </columnFooter>
    <pageFooter>
        <band height="25" splitType="Stretch">
            <frame>
                <reportElement mode="Opaque" x="-21" y="1" width="597" height="24" forecolor="#D0B48E" backcolor="#F2EBDF" uuid="24b6cb4b-7cad-4abd-a159-cc5cc11896db"/>
                <textField evaluationTime="Report">
                    <reportElement style="Column header" x="533" y="0" width="40" height="20" forecolor="#736343" uuid="5463547b-d0a6-440d-baa9-9b1dcce760bf"/>
                    <textElement verticalAlignment="Middle">
                        <font size="10" isBold="false"/>
                    </textElement>
                    <textFieldExpression><![CDATA[" " + $V{PAGE_NUMBER}]]></textFieldExpression>
                </textField>
                <textField>
                    <reportElement style="Column header" x="453" y="0" width="80" height="20" forecolor="#736343" uuid="17310c63-a8e1-4f36-aad6-1b37346d27f6"/>
                    <textElement textAlignment="Right" verticalAlignment="Middle">
                        <font size="10" isBold="false"/>
                    </textElement>
                    <textFieldExpression><![CDATA["Page "+$V{PAGE_NUMBER}+" of"]]></textFieldExpression>
                </textField>
                <textField pattern="EEEEE dd MMMMM yyyy">
                    <reportElement style="Column header" x="22" y="1" width="197" height="20" forecolor="#736343" uuid="340aeee4-0582-45c2-9fbf-f1250cba3f8a"/>
                    <textElement verticalAlignment="Middle">
                        <font size="10" isBold="false"/>
                    </textElement>
                    <textFieldExpression><![CDATA[new java.util.Date()]]></textFieldExpression>
                </textField>
            </frame>
        </band>
    </pageFooter>
    <summary>
        <band splitType="Stretch"/>
    </summary>
</jasperReport>

첫 번째 문제 : crewSubreport에는 다른 두 개의 하위 보고서를 포함하여 그 아래에 다른 보고서 요소가 있습니다. 이 하위 보고서에 여러 레코드가있는 경우 다른 하위 보고서를 포함하여 그 아래의 요소 위에 렌더링됩니다.

두 번째 문제 : crewSubreport 아래의 데이터 텍스트 필드가 렌더링되지만 (하위 보고서가 그 위에 렌더링되지만) "Train Summary", "Number Vehicles :", "Tonnes Hauled :"레이블이있는 정적 텍스트 상자, "Total Length :", "Locos :"및 "Tonnes Gross :"가 렌더링되지 않으며 아직 그 이유를 확인할 수 없습니다.

세 번째 문제 : 첫 번째 문제와 유사하게 locoSubreport가 vehicleListSubreport가 차지하는 공간으로 렌더링됩니다.

이 문제를 어떻게 해결합니까?

편집 : 지금까지 유일한 답변으로 발생한 문제를 설명하기 위해 다음 게시 :

여기에 이미지 설명 입력

메모리 사용량 및 CPU 사용량 그래프에서 왼쪽의 작은 피크는 제가 디자인 한 보고서를 실행하는 것입니다. 그 후의 나머지 그래프는 답변에서 디자인 한 보고서를 실행할 때 발생합니다. 가비지 수집기가 포기하고 스레드를 죽일 때까지 이렇게 계속됩니다. 이 보고서를 생성하는 것은 현재 프로그램이 수행하는 유일한 작업입니다. VisualVM을 사용하여 JVM이 전체 가비지 수집을 수행하도록 강제하는 것은 메모리를 회수하지 않습니다. positionType = "Float"를 사용할 때 Jasper Reports에 문제가있는 것처럼 보이며이 문제를 유발하지 않는 솔루션이 필요합니다.

조란 스 티파니 체프

다음 코드를 시도해보십시오 (첫 번째 하위 보고서를 사랑하는 모든 것이 프레임에 있으므로 모두 함께 이동하는 것이 CPU 집약적 일 수 있음) :

<?xml version="1.0" encoding="UTF-8"?>
<!-- Created with Jaspersoft Studio version last-->
<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="X2010" language="groovy" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="25640552-4299-40b4-8655-a64e83b16458">
    <property name="com.jaspersoft.studio.unit." value="pixel"/>
    <property name="com.jaspersoft.studio.unit.pageHeight" value="pixel"/>
    <property name="com.jaspersoft.studio.unit.pageWidth" value="pixel"/>
    <property name="com.jaspersoft.studio.unit.topMargin" value="pixel"/>
    <property name="com.jaspersoft.studio.unit.bottomMargin" value="pixel"/>
    <property name="com.jaspersoft.studio.unit.leftMargin" value="pixel"/>
    <property name="com.jaspersoft.studio.unit.rightMargin" value="pixel"/>
    <property name="com.jaspersoft.studio.unit.columnWidth" value="pixel"/>
    <property name="com.jaspersoft.studio.unit.columnSpacing" value="pixel"/>
    <style name="Title" fontName="Times New Roman" fontSize="50" isBold="true" pdfFontName="Times-Bold"/>
    <style name="SubTitle" forecolor="#736343" fontName="Arial" fontSize="18"/>
    <style name="Column header" forecolor="#666666" fontName="Arial" fontSize="12" isBold="true"/>
    <style name="Detail" fontName="Arial" fontSize="12"/>
    <style name="Row" mode="Transparent">
        <conditionalStyle>
            <conditionExpression><![CDATA[$V{REPORT_COUNT}%2 == 0]]></conditionExpression>
            <style backcolor="#E6DAC3"/>
        </conditionalStyle>
    </style>
    <queryString>
        <![CDATA[]]>
    </queryString>
    <field name="trainNumber" class="java.lang.String"/>
    <field name="crewReport" class="net.sf.jasperreports.engine.JRDataSource"/>
    <field name="trainType" class="java.lang.String"/>
    <field name="origin" class="java.lang.String"/>
    <field name="dangerousGoods" class="java.lang.Boolean">
        <fieldDescription><![CDATA[]]></fieldDescription>
    </field>
    <field name="outOfGauge" class="java.lang.Boolean"/>
    <field name="trainDate" class="java.util.Date"/>
    <field name="approvedLength" class="java.lang.Integer"/>
    <field name="destination" class="java.lang.String"/>
    <field name="specialLoad" class="java.lang.Boolean"/>
    <field name="submittedBy" class="java.lang.String"/>
    <field name="phone" class="java.lang.String"/>
    <field name="submittedAtDateTime" class="java.util.Date"/>
    <field name="fax" class="java.lang.String"/>
    <field name="numberOfVehicles" class="java.lang.Integer"/>
    <field name="tonnesHauled" class="java.lang.String"/>
    <field name="tonnesGross" class="java.lang.String"/>
    <field name="totalLength" class="java.lang.Double"/>
    <field name="locoReport" class="net.sf.jasperreports.engine.JRDataSource"/>
    <field name="vehicleReport" class="net.sf.jasperreports.engine.JRDataSource"/>
    <field name="railOperatorName" class="java.lang.String"/>
    <field name="submitter" class="java.lang.String"/>
    <field name="consistLocation" class="java.lang.String"/>
    <group name="Group1">
        <groupExpression><![CDATA[(int)($V{REPORT_COUNT}/15)]]></groupExpression>
        <groupFooter>
            <band height="50" splitType="Stretch">
                <printWhenExpression><![CDATA[$F{vehicleReport} != null]]></printWhenExpression>
            </band>
        </groupFooter>
    </group>
    <group name="Group2">
        <groupExpression><![CDATA[(int)($V{REPORT_COUNT}/5)]]></groupExpression>
        <groupFooter>
            <band height="107" splitType="Stretch"/>
        </groupFooter>
    </group>
    <background>
        <band splitType="Stretch"/>
    </background>
    <title>
        <band height="65" splitType="Stretch">
            <staticText>
                <reportElement style="Title" x="80" y="0" width="472" height="62" uuid="b89a83c9-c1a2-4ab6-85a2-88ba23795dd3"/>
                <textElement verticalAlignment="Middle">
                    <font pdfFontName="Times-Roman"/>
                </textElement>
                <text><![CDATA[X20.10 Report]]></text>
            </staticText>
        </band>
    </title>
    <pageHeader>
        <band splitType="Stretch"/>
    </pageHeader>
    <columnHeader>
        <band height="5" splitType="Stretch">
            <line>
                <reportElement positionType="FixRelativeToBottom" x="1" y="1" width="552" height="2" uuid="f93f01ef-7224-41b8-a330-380bec4336d6"/>
                <graphicElement>
                    <pen lineWidth="0.5" lineColor="#999999"/>
                </graphicElement>
            </line>
        </band>
    </columnHeader>
    <detail>
        <band height="400" splitType="Stretch">
            <property name="local_mesure_unitheight" value="pixel"/>
            <property name="com.jaspersoft.studio.unit.height" value="px"/>
            <staticText>
                <reportElement x="0" y="120" width="90" height="20" uuid="20c60332-1cff-4218-bfce-57cec3e447dd"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Train Number:]]></text>
            </staticText>
            <subreport runToBottom="true">
                <reportElement isPrintRepeatedValues="false" x="-20" y="220" width="595" height="45" uuid="4f24664e-5df0-4326-9b95-9939f93c48d4"/>
                <dataSourceExpression><![CDATA[$F{crewReport}]]></dataSourceExpression>
                <subreportExpression><![CDATA["crewSubreport.jasper"]]></subreportExpression>
            </subreport>
            <textField>
                <reportElement x="90" y="120" width="90" height="20" uuid="110c9328-d33c-4c0a-86e5-7f4ebe669b4f"/>
                <textFieldExpression><![CDATA[$F{trainNumber}]]></textFieldExpression>
            </textField>
            <staticText>
                <reportElement x="0" y="90" width="554" height="30" uuid="efaedffc-7d27-40f0-acc1-71797d91472c"/>
                <box>
                    <topPen lineWidth="1.0" lineStyle="Solid" lineColor="#000000"/>
                    <leftPen lineWidth="1.0" lineStyle="Solid" lineColor="#000000"/>
                    <bottomPen lineWidth="1.0" lineStyle="Solid" lineColor="#000000"/>
                    <rightPen lineWidth="1.0" lineStyle="Solid" lineColor="#000000"/>
                </box>
                <textElement textAlignment="Center">
                    <font size="18"/>
                </textElement>
                <text><![CDATA[Train Details]]></text>
            </staticText>
            <staticText>
                <reportElement x="0" y="140" width="90" height="20" uuid="91493735-ab12-4068-9583-9edbbac7ca35"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Train Type:]]></text>
            </staticText>
            <staticText>
                <reportElement x="0" y="160" width="90" height="20" uuid="a3e483b0-59c4-494c-ad36-1ea30eb4c5f5"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Origin]]></text>
            </staticText>
            <staticText>
                <reportElement x="0" y="180" width="90" height="20" uuid="f5f23f73-3bdb-4b12-b9ec-d1946d1d249c"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Dangerous Goods:]]></text>
            </staticText>
            <staticText>
                <reportElement x="0" y="200" width="90" height="20" uuid="49aebc16-13db-4842-bb0f-23eac8f693a4"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Out of Gauge:]]></text>
            </staticText>
            <textField>
                <reportElement x="90" y="140" width="90" height="20" uuid="ff7d87fc-1087-4edf-b1ed-454ff8ae94f8"/>
                <textFieldExpression><![CDATA[$F{trainType}]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement x="90" y="160" width="90" height="20" uuid="7f109b0f-f4f4-48af-9a13-909b766dbd3c"/>
                <textFieldExpression><![CDATA[$F{origin}]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement x="90" y="180" width="90" height="20" uuid="67f7fd28-1cee-402d-8a35-523058ab5061"/>
                <textFieldExpression><![CDATA[$F{dangerousGoods} ? "Yes" : "No"]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement x="90" y="200" width="90" height="20" uuid="82586e0e-b6a7-43cf-9b1f-a12612396909"/>
                <textFieldExpression><![CDATA[$F{outOfGauge} ? "Yes" : "No"]]></textFieldExpression>
            </textField>
            <staticText>
                <reportElement x="280" y="120" width="100" height="20" uuid="94651700-a070-400e-a206-fd09170cf797"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Train Date:]]></text>
            </staticText>
            <textField pattern="dd/MM/yyyy">
                <reportElement x="380" y="120" width="100" height="20" uuid="2ea29a18-1d85-4a23-b9f6-17459ceafe0d"/>
                <textFieldExpression><![CDATA[$F{trainDate}]]></textFieldExpression>
            </textField>
            <staticText>
                <reportElement x="280" y="140" width="100" height="20" uuid="3ffe5495-6b91-424b-b652-c48c72b39a8f"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Approved Length:]]></text>
            </staticText>
            <staticText>
                <reportElement x="280" y="160" width="100" height="20" uuid="68bcc4c2-d6c0-426b-979c-c70bbd1c550c"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Destination:]]></text>
            </staticText>
            <staticText>
                <reportElement x="280" y="180" width="100" height="20" uuid="83e83257-d581-4fdd-8955-ef281357aaae"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Special Load:]]></text>
            </staticText>
            <textField>
                <reportElement x="380" y="140" width="100" height="20" uuid="0f1b2cf0-73a3-4106-904a-8a28b7717909"/>
                <textFieldExpression><![CDATA[$F{approvedLength}]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement x="380" y="160" width="100" height="20" uuid="7a006853-a10a-4759-889f-b9848a59d79b"/>
                <textFieldExpression><![CDATA[$F{destination}]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement x="380" y="180" width="100" height="20" uuid="521136d0-a51f-4ca1-bdce-6d0ed1cd5c76"/>
                <textFieldExpression><![CDATA[$F{specialLoad} ? "Yes" : "No"]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement x="90" y="50" width="90" height="20" uuid="36b52f46-6f49-4c75-88d0-27a221bc62ec"/>
                <textFieldExpression><![CDATA[$F{submittedBy}]]></textFieldExpression>
            </textField>
            <staticText>
                <reportElement x="0" y="50" width="90" height="20" uuid="2cad93ef-d94f-4479-93e7-7a232023dace"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Submitted By:]]></text>
            </staticText>
            <staticText>
                <reportElement x="0" y="70" width="90" height="20" uuid="90474202-ce8b-4657-bad1-71edc8557335"/>
                <text><![CDATA[Phone:]]></text>
            </staticText>
            <textField>
                <reportElement x="90" y="70" width="90" height="20" uuid="20d6f136-62e4-4332-9098-3355896ff4af"/>
                <textFieldExpression><![CDATA[$F{phone}]]></textFieldExpression>
            </textField>
            <textField pattern="dd/MM/yyyy HH:mm">
                <reportElement x="380" y="50" width="174" height="20" uuid="540bcba3-93ee-4877-b5a8-6f58db7c7398"/>
                <textFieldExpression><![CDATA[$F{submittedAtDateTime}]]></textFieldExpression>
            </textField>
            <staticText>
                <reportElement x="280" y="50" width="100" height="20" uuid="957ce926-9636-4625-b91f-78ecd3b8a200"/>
                <textElement>
                    <font isBold="true"/>
                </textElement>
                <text><![CDATA[Submitted At:]]></text>
            </staticText>
            <staticText>
                <reportElement x="280" y="70" width="100" height="20" uuid="d8cf6e8b-9664-4012-b51d-6cdea49faf22"/>
                <text><![CDATA[Fax:]]></text>
            </staticText>
            <textField>
                <reportElement x="380" y="70" width="174" height="20" uuid="cc95ebda-f955-4eaf-9314-45e4a56c4fde"/>
                <textFieldExpression><![CDATA[$F{fax}]]></textFieldExpression>
            </textField>
            <textField>
                <reportElement x="0" y="0" width="554" height="50" uuid="f7c297a9-e14e-44de-8769-5d483cfe4863"/>
                <textElement textAlignment="Center">
                    <font size="14" isBold="true"/>
                </textElement>
                <textFieldExpression><![CDATA["Consist for " + $F{railOperatorName} + " submitted by " + $F{submitter} + "\nConsist Location: " + $F{consistLocation}]]></textFieldExpression>
            </textField>
            <frame>
                <reportElement positionType="Float" x="-20" y="270" width="596" height="110" uuid="18015311-a28e-4eee-9051-45b1790d24f7">
                    <property name="local_mesure_unitx" value="pixel"/>
                    <property name="com.jaspersoft.studio.unit.x" value="px"/>
                    <property name="local_mesure_unity" value="pixel"/>
                    <property name="com.jaspersoft.studio.unit.y" value="px"/>
                    <property name="local_mesure_unitheight" value="pixel"/>
                    <property name="com.jaspersoft.studio.unit.height" value="px"/>
                </reportElement>
                <subreport runToBottom="true">
                    <reportElement stretchType="RelativeToTallestObject" isPrintRepeatedValues="false" x="50" y="60" width="130" height="20" uuid="4f470a33-ef93-425d-951e-e53642df7771">
                        <property name="local_mesure_unity" value="pixel"/>
                        <property name="com.jaspersoft.studio.unit.y" value="px"/>
                    </reportElement>
                    <dataSourceExpression><![CDATA[$F{locoReport}]]></dataSourceExpression>
                    <subreportExpression><![CDATA["locoSubreport.jasper"]]></subreportExpression>
                </subreport>
                <textField pattern="#0.00#;(#0.00#-)">
                    <reportElement isPrintRepeatedValues="false" x="460" y="40" width="80" height="20" uuid="f182c7db-f00f-4107-bc33-93b30faf11a9">
                        <property name="local_mesure_unity" value="pixel"/>
                        <property name="com.jaspersoft.studio.unit.y" value="px"/>
                    </reportElement>
                    <textFieldExpression><![CDATA[$F{totalLength}]]></textFieldExpression>
                </textField>
                <textField pattern="#0.00#;(#0.00#-)">
                    <reportElement isPrintRepeatedValues="false" x="280" y="40" width="80" height="20" uuid="c5f34099-ac0e-4634-9398-a96f93c052f6">
                        <property name="local_mesure_unity" value="pixel"/>
                        <property name="com.jaspersoft.studio.unit.y" value="px"/>
                    </reportElement>
                    <textFieldExpression><![CDATA[$F{tonnesHauled}]]></textFieldExpression>
                </textField>
                <staticText>
                    <reportElement isPrintRepeatedValues="false" x="190" y="60" width="80" height="20" uuid="824478e7-fc00-4d16-8a39-6355baf4bc61">
                        <property name="local_mesure_unity" value="pixel"/>
                        <property name="com.jaspersoft.studio.unit.y" value="px"/>
                    </reportElement>
                    <textElement>
                        <font isBold="true"/>
                    </textElement>
                    <text><![CDATA[Tonnes Gross:]]></text>
                </staticText>
                <staticText>
                    <reportElement isPrintRepeatedValues="false" x="190" y="40" width="80" height="20" uuid="e0bc266a-56f2-4246-bea6-f31c4718046d">
                        <property name="local_mesure_unity" value="pixel"/>
                        <property name="com.jaspersoft.studio.unit.y" value="px"/>
                    </reportElement>
                    <textElement>
                        <font isBold="true"/>
                    </textElement>
                    <text><![CDATA[Tonnes Hauled:]]></text>
                </staticText>
                <textField pattern="#0.00#;(#0.00#-)">
                    <reportElement isPrintRepeatedValues="false" x="280" y="60" width="80" height="20" uuid="74e9ef61-e6e0-45fa-9966-9950c2f5a1e0">
                        <property name="local_mesure_unity" value="pixel"/>
                        <property name="com.jaspersoft.studio.unit.y" value="px"/>
                    </reportElement>
                    <textFieldExpression><![CDATA[$F{tonnesGross}]]></textFieldExpression>
                </textField>
                <textField>
                    <reportElement isPrintRepeatedValues="false" x="100" y="40" width="80" height="20" uuid="86833b59-3fe2-4c50-8d8e-18d80e082f75">
                        <property name="local_mesure_unity" value="pixel"/>
                        <property name="com.jaspersoft.studio.unit.y" value="px"/>
                    </reportElement>
                    <textFieldExpression><![CDATA[$F{numberOfVehicles}]]></textFieldExpression>
                </textField>
                <staticText>
                    <reportElement isPrintRepeatedValues="false" x="0" y="60" width="40" height="20" uuid="c08f0b3c-0ddf-4cbb-b377-1f48b80fa383">
                        <property name="local_mesure_unity" value="pixel"/>
                        <property name="com.jaspersoft.studio.unit.y" value="px"/>
                    </reportElement>
                    <textElement>
                        <font isBold="true"/>
                    </textElement>
                    <text><![CDATA[Locos:]]></text>
                </staticText>
                <staticText>
                    <reportElement isPrintRepeatedValues="false" x="0" y="40" width="90" height="20" uuid="6a4a5d4b-5762-45d2-b54f-2167af8da5f8">
                        <property name="local_mesure_unity" value="pixel"/>
                        <property name="com.jaspersoft.studio.unit.y" value="px"/>
                    </reportElement>
                    <textElement>
                        <font isBold="true"/>
                    </textElement>
                    <text><![CDATA[Number Vehicles:]]></text>
                </staticText>
                <staticText>
                    <reportElement isPrintRepeatedValues="false" x="1" y="0" width="551" height="35" uuid="53e5c946-8e6d-44fa-8715-f193d224b489">
                        <property name="local_mesure_unity" value="pixel"/>
                        <property name="com.jaspersoft.studio.unit.y" value="px"/>
                    </reportElement>
                    <box>
                        <topPen lineWidth="1.0" lineStyle="Solid" lineColor="#000000"/>
                        <leftPen lineWidth="1.0" lineStyle="Solid" lineColor="#000000"/>
                        <bottomPen lineWidth="1.0" lineStyle="Solid" lineColor="#000000"/>
                        <rightPen lineWidth="1.0" lineStyle="Solid" lineColor="#000000"/>
                    </box>
                    <textElement textAlignment="Center">
                        <font size="18"/>
                    </textElement>
                    <text><![CDATA[Train Summary]]></text>
                </staticText>
                <staticText>
                    <reportElement isPrintRepeatedValues="false" x="370" y="40" width="80" height="20" uuid="31012f66-602d-4892-82f4-d1187915046e">
                        <property name="local_mesure_unity" value="pixel"/>
                        <property name="com.jaspersoft.studio.unit.y" value="px"/>
                    </reportElement>
                    <textElement>
                        <font isBold="true"/>
                    </textElement>
                    <text><![CDATA[Total Length:]]></text>
                </staticText>
                <subreport runToBottom="true">
                    <reportElement positionType="Float" stretchType="RelativeToTallestObject" isPrintRepeatedValues="false" x="0" y="90" width="595" height="20" printWhenGroupChanges="Group1" uuid="8e2dbcb5-3c3f-4bb5-a606-39f6f2e8656a">
                        <property name="local_mesure_unity" value="pixel"/>
                        <property name="com.jaspersoft.studio.unit.y" value="px"/>
                        <property name="local_mesure_unitx" value="pixel"/>
                        <property name="com.jaspersoft.studio.unit.x" value="px"/>
                    </reportElement>
                    <dataSourceExpression><![CDATA[$F{vehicleReport}]]></dataSourceExpression>
                    <subreportExpression><![CDATA["vehicleListSubreport.jasper"]]></subreportExpression>
                </subreport>
            </frame>
        </band>
    </detail>
    <columnFooter>
        <band height="6" splitType="Stretch">
            <line>
                <reportElement positionType="FixRelativeToBottom" x="0" y="0" width="554" height="2" uuid="447d20b2-f65e-42ee-b2a8-69632882c668"/>
                <graphicElement>
                    <pen lineWidth="0.5" lineColor="#999999"/>
                </graphicElement>
            </line>
        </band>
    </columnFooter>
    <pageFooter>
        <band height="25" splitType="Stretch">
            <frame>
                <reportElement mode="Opaque" x="-21" y="1" width="597" height="24" forecolor="#D0B48E" backcolor="#F2EBDF" uuid="24b6cb4b-7cad-4abd-a159-cc5cc11896db"/>
                <textField evaluationTime="Report">
                    <reportElement style="Column header" x="533" y="0" width="40" height="20" forecolor="#736343" uuid="5463547b-d0a6-440d-baa9-9b1dcce760bf"/>
                    <textElement verticalAlignment="Middle">
                        <font size="10" isBold="false"/>
                    </textElement>
                    <textFieldExpression><![CDATA[" " + $V{PAGE_NUMBER}]]></textFieldExpression>
                </textField>
                <textField>
                    <reportElement style="Column header" x="453" y="0" width="80" height="20" forecolor="#736343" uuid="17310c63-a8e1-4f36-aad6-1b37346d27f6"/>
                    <textElement textAlignment="Right" verticalAlignment="Middle">
                        <font size="10" isBold="false"/>
                    </textElement>
                    <textFieldExpression><![CDATA["Page "+$V{PAGE_NUMBER}+" of"]]></textFieldExpression>
                </textField>
                <textField pattern="EEEEE dd MMMMM yyyy">
                    <reportElement style="Column header" x="22" y="1" width="197" height="20" forecolor="#736343" uuid="340aeee4-0582-45c2-9fbf-f1250cba3f8a"/>
                    <textElement verticalAlignment="Middle">
                        <font size="10" isBold="false"/>
                    </textElement>
                    <textFieldExpression><![CDATA[new java.util.Date()]]></textFieldExpression>
                </textField>
            </frame>
        </band>
    </pageFooter>
    <summary>
        <band splitType="Stretch"/>
    </summary>
</jasperReport>

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

다른 구성 요소의 렌더링 함수 내에서 선언 된 구성 요소를 렌더링하면 REACT 17의 componentDidMount 메서드에 대한 변경 사항이 포함되지 않습니다.

분류에서Dev

InnerText 속성에 "See {"가 포함되지 않은 요소를 제외하도록 목록을 필터링하려면 어떻게해야합니까?

분류에서Dev

한 요소가 다른 요소를 다룹니다. 요소가 숨겨 지거나 / 가려 지거나 / 보이지 않도록 전면 / 위에 표시되도록 설정하려면 어떻게해야합니까?

분류에서Dev

내 함수가 TypeError를 던지지 않고 다른 인수 외에도 부동 소수점을 취하도록하려면 어떻게해야합니까?

분류에서Dev

Slotted HTML 요소가 shadowRoot 내부에있을 때까지 렌더링되지 않도록하려면 어떻게해야합니까?

분류에서Dev

다시 렌더링하지 않고보기에 반응 네이티브 구성 요소를 추가하려면 어떻게해야합니까?

분류에서Dev

다른 함수 내에서 함수가 5 번 반복되도록하려면 어떻게해야합니까? (가위 바위 보)

분류에서Dev

조건 자 논리를 사용하여 목록의 개체가 C #의 다른 목록에 포함 된 요소를 기반으로 제네릭 목록에서 요소를 제거하려면 어떻게해야합니까?

분류에서Dev

배열 개별 요소가 다른 요소를 유지하면서 구문 분석에 실패하도록 허용하려면 어떻게해야합니까?

분류에서Dev

내 반응 구성 요소를 렌더링하기 전에 axios가 요청을 기다리도록하려면 어떻게해야합니까?

분류에서Dev

하위 구성 요소가 상위 구성 요소에서 제대로 렌더링되지 않습니다.

분류에서Dev

배포판의 저장소에 포함 된 것보다 더 새로운 부스트 패키지를 얻으려면 어떻게해야합니까?

분류에서Dev

중첩 된 구성 요소가 Svelte / Sapper에서 제대로 렌더링되지 않습니다.

분류에서Dev

속성 값에 하위 문자열이 포함 된 요소를 목록에서 검색하려면 어떻게해야합니까?

분류에서Dev

계속하기 전에 <dd> 요소에 데이터가 포함될 때까지 Selenium WebDriver가 대기하도록하려면 어떻게해야합니까?

분류에서Dev

yarn.lock 파일에 패키지가 포함되지 않도록하려면 어떻게해야합니까?

분류에서Dev

SVG가 div에 포함되도록하려면 어떻게해야합니까?

분류에서Dev

Flexbox-스크롤 가능한 컨테이너에 포함 된 Flex 항목 내부의 요소가 올바르게 렌더링되지 않음

분류에서Dev

포착되지 않은 TypeError : _this.props.data.map은 함수가 아닙니다. 구성 요소를 렌더링하기위한 매핑 오류입니다.

분류에서Dev

반환 된 JavaScript 값은 div 요소 내부에서 렌더링되지 않습니다.

분류에서Dev

다른 컨트롤러에서 함수를 실행하여 범위가 각도로 업데이트되도록하려면 어떻게해야합니까?

분류에서Dev

다른 버전의 Chrome간에 일관되지 않게 렌더링 된 SVG 경로 요소

분류에서Dev

Jest 단위 테스트에서 렌더링 된 React 구성 요소가 어떻게 보이는지 확인하는 방법은 무엇입니까?

분류에서Dev

React & Firebase + Flux : 하위 구성 요소가 렌더링되지 않습니다.

분류에서Dev

요소를 포함 된 하위 요소로 어떻게 대체합니까?

분류에서Dev

지정된 요소가 맨 위에 있도록 페이지를 아래로 스크롤하려면 어떻게해야합니까?

분류에서Dev

각 문자가 다른 줄에 인쇄되지 않도록하려면 어떻게합니까?

분류에서Dev

ReactNative FlatList는 이전에 렌더링 된 다른 구성 요소가있을 때 완전히 표시되지 않습니다.

분류에서Dev

React 하위 구성 요소가 배열에서 매핑 될 때 다시 렌더링되지 않습니다.

Related 관련 기사

  1. 1

    다른 구성 요소의 렌더링 함수 내에서 선언 된 구성 요소를 렌더링하면 REACT 17의 componentDidMount 메서드에 대한 변경 사항이 포함되지 않습니다.

  2. 2

    InnerText 속성에 "See {"가 포함되지 않은 요소를 제외하도록 목록을 필터링하려면 어떻게해야합니까?

  3. 3

    한 요소가 다른 요소를 다룹니다. 요소가 숨겨 지거나 / 가려 지거나 / 보이지 않도록 전면 / 위에 표시되도록 설정하려면 어떻게해야합니까?

  4. 4

    내 함수가 TypeError를 던지지 않고 다른 인수 외에도 부동 소수점을 취하도록하려면 어떻게해야합니까?

  5. 5

    Slotted HTML 요소가 shadowRoot 내부에있을 때까지 렌더링되지 않도록하려면 어떻게해야합니까?

  6. 6

    다시 렌더링하지 않고보기에 반응 네이티브 구성 요소를 추가하려면 어떻게해야합니까?

  7. 7

    다른 함수 내에서 함수가 5 번 반복되도록하려면 어떻게해야합니까? (가위 바위 보)

  8. 8

    조건 자 논리를 사용하여 목록의 개체가 C #의 다른 목록에 포함 된 요소를 기반으로 제네릭 목록에서 요소를 제거하려면 어떻게해야합니까?

  9. 9

    배열 개별 요소가 다른 요소를 유지하면서 구문 분석에 실패하도록 허용하려면 어떻게해야합니까?

  10. 10

    내 반응 구성 요소를 렌더링하기 전에 axios가 요청을 기다리도록하려면 어떻게해야합니까?

  11. 11

    하위 구성 요소가 상위 구성 요소에서 제대로 렌더링되지 않습니다.

  12. 12

    배포판의 저장소에 포함 된 것보다 더 새로운 부스트 패키지를 얻으려면 어떻게해야합니까?

  13. 13

    중첩 된 구성 요소가 Svelte / Sapper에서 제대로 렌더링되지 않습니다.

  14. 14

    속성 값에 하위 문자열이 포함 된 요소를 목록에서 검색하려면 어떻게해야합니까?

  15. 15

    계속하기 전에 <dd> 요소에 데이터가 포함될 때까지 Selenium WebDriver가 대기하도록하려면 어떻게해야합니까?

  16. 16

    yarn.lock 파일에 패키지가 포함되지 않도록하려면 어떻게해야합니까?

  17. 17

    SVG가 div에 포함되도록하려면 어떻게해야합니까?

  18. 18

    Flexbox-스크롤 가능한 컨테이너에 포함 된 Flex 항목 내부의 요소가 올바르게 렌더링되지 않음

  19. 19

    포착되지 않은 TypeError : _this.props.data.map은 함수가 아닙니다. 구성 요소를 렌더링하기위한 매핑 오류입니다.

  20. 20

    반환 된 JavaScript 값은 div 요소 내부에서 렌더링되지 않습니다.

  21. 21

    다른 컨트롤러에서 함수를 실행하여 범위가 각도로 업데이트되도록하려면 어떻게해야합니까?

  22. 22

    다른 버전의 Chrome간에 일관되지 않게 렌더링 된 SVG 경로 요소

  23. 23

    Jest 단위 테스트에서 렌더링 된 React 구성 요소가 어떻게 보이는지 확인하는 방법은 무엇입니까?

  24. 24

    React & Firebase + Flux : 하위 구성 요소가 렌더링되지 않습니다.

  25. 25

    요소를 포함 된 하위 요소로 어떻게 대체합니까?

  26. 26

    지정된 요소가 맨 위에 있도록 페이지를 아래로 스크롤하려면 어떻게해야합니까?

  27. 27

    각 문자가 다른 줄에 인쇄되지 않도록하려면 어떻게합니까?

  28. 28

    ReactNative FlatList는 이전에 렌더링 된 다른 구성 요소가있을 때 완전히 표시되지 않습니다.

  29. 29

    React 하위 구성 요소가 배열에서 매핑 될 때 다시 렌더링되지 않습니다.

뜨겁다태그

보관