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,
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,