1

在使用案例的内置打印功能时,是否可以避免打印附在案例上的笔记?

如果不可能,我将创建一个 SSRS 报告来执行此操作,但我宁愿只使用已经存在的内容。

4

2 回答 2

2

您应该能够通过在页面中嵌入隐藏的 HTML Web 资源来实现,该页面是打印预览页面时隐藏元素。

将字段变为不同颜色的示例代码:

<HTML>
    <HEAD>
        <SCRIPT type=text/javascript>
            if (top.location.href.indexOf("/print/print.aspx") != -1) {
                //Do your own DOM manipulation here to hide sections
                top.frames[0].document.getElementById('caseorigincode_d').firstChild.style.color = '#0000FF';

            }
        </SCRIPT>
        <META charset=utf-8>
    </HEAD>

    <BODY contentEditable=true>
        <FONT size=2 face="Tahoma, Verdana, Arial">
            Testing…
        </FONT>
    </BODY>
</HTML>

此方法来自:http : //www.crmsoftwareblog.com/2011/08/printing-in-crm-2011/

于 2012-11-14T14:15:30.347 回答
1

如果你把:

<field name>_c

它是标题/标签

<field name>_d

它是数据值

在你的情况下,只需输入:

{
   top.frames[0].document.getElementById('notescontrol_c').style.display = "none"
   top.frames[0].document.getElementById('notescontrol_d').style.display = "none"
}
于 2013-04-09T10:32:56.590 回答