Print Button

Home Forums Quform WordPress Print Button

This topic is: not resolved
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #25982
    chrisgeist
    Participant

    Is there any chance that there will be a PRINT Button after submitting a form? I already asked and you said it well be implemented soon. Any idea when its coming?
    thanks in advance,

    chris

    #26026
    Ally
    Support Staff

    You don't have permission to view this content. Please log in or register and then verify your purchases to gain access.

    #33832
    jalvarezb
    Participant

    Hello, In two years have a solution? I have the same question.

    Thank you

    #33836
    Ally
    Support Staff

    You don't have permission to view this content. Please log in or register and then verify your purchases to gain access.

    #33865
    oivanr
    Participant

    I had already work on something about it.

    1) Create a html button.
    <button class=”btn-default” type=”button” onclick=”printDiv(‘areaImprimir’);”>Imprimir</button>
    2) Create a function in JS
    function printDiv(nombreDiv) {
    var contenido= document.getElementById(nombreDiv).innerHTML;
    var contenidoOriginal= document.body.innerHTML;
    document.body.innerHTML = contenido;
    window.print();
    document.body.innerHTML = contenidoOriginal;
    }
    It must be customize to specific need but the main idea is that.
    Regards,

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.
Be inspired. © 2024 ThemeCatcher Ltd. 20-22 Wenlock Road, London, England, N1 7GU | Company No. 08120384 | Built with React | Privacy Policy