How to Genarte code?

0
I a print functionality in my app,when i click on print button it generate QR code and show specific details how to acheive this?
asked
1 answers
0

Hi Hemali,

To generate a QR code you can use the "QR Code Generator" widget and print the specific detail you have to write a javascript action for it:

Like:

function printPage() {   

window.print();

}

document.getElementById("printButton").addEventListener("click", printPage);

answered