Skip to content

Issue AcroFormCheckbox is not displayed in the print version #3274

Closed
@geltapatio

Description

@geltapatio

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');

AcroFormCheckbox_print_version

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions