Giter Site home page Giter Site logo

Comments (5)

bpampuch avatar bpampuch commented on June 15, 2024 4

Your sample is working fine, just remember to define content as well as it's mandatory.

Alternatively header and footer can be set to a function taking two arguments (currentPage, pageCount)

For a simple case the following piece of code should be enough:

footer: function(page, pages){ return page + ' of ' + pages; },

Remember the function can return any valid node (if a simple text is not enough), so a more complex example could look like this:

footer: function(page, pages) { 
    return { 
        columns: [ 
            'Left part of footer',
            { 
                alignment: 'right',
                text: [
                    { text: page.toString(), italics: true },
                    ' of ',
                    { text: pages.toString(), italics: true }
                ]
            }
        ],
        margin: [10, 0]
    };
},

from pdfmake.

rizwanspeaks avatar rizwanspeaks commented on June 15, 2024 2

dynamic footer footer: function(page, pages){ return page + ' of ' + pages; } is not working in webworker

from pdfmake.

przemo22 avatar przemo22 commented on June 15, 2024

First, basic question: How can I add footer and header in pdf?
I try by passing below code, but didn't work

{ header: { text : "valueOfHeader" }, footer: { text: "valueOfFooter" } }

Second question: how can i insert page numbers in footer?

from pdfmake.

przemo22 avatar przemo22 commented on June 15, 2024

Thank's a lot, now it works well 👍

from pdfmake.

nilakshibhosale avatar nilakshibhosale commented on June 15, 2024

How can we add line seperator in footer in datatable

from pdfmake.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.