You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//This code is intended to go in the page you have placed your input and button element. Please note the name of the backend file and any id's so you may update accordingly
import { generateDownloadLink } from 'backend/generatePdf.web'
$w.onReady(function () {
$w('#fileName').onInput(() => {
if($w('#fileName').valid){
$w('#btnPdf').enable()
}
})
$w('#btnPdf').onClick(async() => {
$w('#btnPdf').label = "Please wait..."
$w('#btnPdf').disable()
let downloadUrl = await generateDownloadLink($w('#fileName').value)