openhtmltopdf icon indicating copy to clipboard operation
openhtmltopdf copied to clipboard

Checked checkboxes

Open vipra30 opened this issue 3 years ago • 1 comments

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>

vipra30 avatar Oct 01 '21 18:10 vipra30

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>

danfickle avatar Oct 02 '21 06:10 danfickle