I'm trying to make a form printable, but no editable, but it has radio buttons and checkboxes that are modifiable. If I disable the entire <DIV> with <DIV disabled=disabled> then it's that crappy gray that isn't very appealing print quality.
So I tried to disable the click even which worked in most cases, but no all
<div id="pnPrintable" onclick="return false;">
.
.
.
</div>
Any clicks within this block are ignored, but with radio buttons it will act like you clicked on of the group, so if a another radio button is checked, and you click a different one. Radio button number 2 isn't changed, but Radio button number one is deselected.
Any suggestions on making a form print nicely, but not editable would be greatly appreciated.
So I tried to disable the click even which worked in most cases, but no all
<div id="pnPrintable" onclick="return false;">
.
.
.
</div>
Any clicks within this block are ignored, but with radio buttons it will act like you clicked on of the group, so if a another radio button is checked, and you click a different one. Radio button number 2 isn't changed, but Radio button number one is deselected.
Any suggestions on making a form print nicely, but not editable would be greatly appreciated.
Comment