View expert feedback to this tip.
This JavaScript code in the onload event of the form will disable the checkbox option "Marked for deletion."
Code
var inputelems=document.forms[0].
getElementsByTagName("INPUT");
for(i=0;I<inputelems.length;i++)
{
if(inputelems[i].type=="checkbox" &&
inputelems[i].name.charAt(0)=='%')
{
inputelems[i].disabled=true;
}
}
EXPERT FEEDBACK TO THIS TIP
This would probably work, but it's not the proper Domino way, which would be using the $V2AttachmentOptions field as described here.
Do you have comments of your own? Let us know.