Hello,
I have an issue with a simple task: opening a new form via a push button. After pressing the button with this script:
(async (doo: IDoo) => { // do not change this line
try{
doo.form.openForm(“bTKReminder_2”);
console.log(“done”);
}
catch (error){
console.log(“err:”,error);
}
}) // do not change this line
I get this error:
I’d be grateful for any advice. Thank you.