Closed
Description
If you use an AcroFormCheckbox, it will be displayed correctly in Acrobat Reader, but when you want to print the document, the checkbox will not be displayed if it is unchecked.
you can see the bug here jsfiddle
pdf = new jspdf.jsPDF();
var checkBox = new jspdf.AcroFormCheckBox();
checkBox.fieldName='chbox_test';
checkBox.maxFontSize = 9;
checkBox.readOnly = false;
checkBox.height = 3;
checkBox.width =3;
checkBox.x = 24;
checkBox.y = 20;
pdf.addField(checkBox);
pdf.text('Fotos',30, checkBox.y + 3);
pdf.save('Test.pdf');
Metadata
Metadata
Assignees
Labels
No labels