danfickle / openhtmltopdf

An HTML to PDF library for the JVM. Based on Flying Saucer and Apache PDF-BOX 2. With SVG image support. Now also with accessible PDF support (WCAG, Section 508, PDF/UA)!
https://danfickle.github.io/pdf-templates/index.html
Other
1.92k stars 358 forks source link

Checked checkboxes #772

Open vipra30 opened 3 years ago

vipra30 commented 3 years ago

Hi, I'm trying to turn a html page into pdf but it does not work with checkedboxes. When I enter

<td><input type=\"checkbox\" class=\"largerCheckbox\" name=\"\" checked>&nbsp;&nbsp;Permanent Address</td>
danfickle commented 3 years ago

Note that form controls need a name and must be in a form. I just tried this in the sandbox with success:

<html>
<body>
<form>
<input type="checkbox" name="test" checked=""/>Permanent Address
</form>
</body>
</html>