speedata / publisher

speedata Publisher - a professional database Publishing system
https://www.speedata.de/
GNU Affero General Public License v3.0
302 stars 36 forks source link

SetGrid width/height does not override nx,ny #619

Closed pgundlach closed 1 month ago

pgundlach commented 1 month ago

Second page should print 5, not 2.

Version 4.19.26

<Layout xmlns="urn:speedata.de:2009/publisher/en"
    xmlns:sd="urn:speedata:2009/publisher/functions/en">
    <Trace grid="yes" />
    <Record element="data">
        <Pageformat height="6cm" width="7cm" />

        <SetGrid nx="2" ny="2" />
        <PlaceObject>
            <Textblock>
                <Paragraph>
                    <Value select="sd:number-of-columns()" />
                </Paragraph>
            </Textblock>
        </PlaceObject>
        <ClearPage />
        <SetGrid width="1cm" height="1cm" />
        <PlaceObject>
            <Textblock>
                <Paragraph>
                    <Value select="sd:number-of-columns()" />
                </Paragraph>
            </Textblock>
        </PlaceObject>
    </Record>
</Layout>