A strange problem. I have a simple web form where users can fill out text and check some checkboxes. When it prints in pdf or paper (or preview) format in IE (7 or 8), these flags are printed unchanged. For example. the user sets the check, it is printed unverified ... or with a pre-set field with the user disabled, prints.
The same goes for the radio.
Only when I completely remove DocType does IE print it correctly. But I need to use XHTML-strict.
This is a simple example that does not work in IE:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="nl" xml:lang="nl-NL"> <body> <input type='checkbox' name='y'/><br/> <input type='radio' name='x'/><br/> </body> </html>
Does not work with any type of doctype being tested (free or html4).
Does anyone know how to solve this?
Thank you very much michael
checkbox internet-explorer printing
Michael
source share