Default Off Print Attachments
When printing a record, is it possible to set "Print attached images" to unchecked by default instead of checked?
3 replies
-
Hi,
you can save your choice in every layout. At the moment it will only be saved if you change something else too (like a field) in the layout. But we already have it on our change request list and hope to fix it soon.
Best, Jörg
-
Sent the attachments via E-Mail to your Printer (you need a email for your Printer).
I do this with hp-Printer
-
That‘s my code
let result := dialog("Information", "Print this ?", ["Yes", "No"]);
if result = "Yes" then
sendEmail({
from: " -your Ninox E-Mail- ",
to: " -your Printer E-Mail- ",
cc: " -perhaps a E-Mail adress- ",
subject: " -i do without- "
text: " - i do without- ",
attachments: files(this)
});
alert("will be Printer")
else
alert(" Printing has been canceled ")
end
Content aside
- 5 yrs agoLast active
- 3Replies
- 1881Views