打印按钮也打印在myprint上

时间:2013-07-29 05:40:14

标签: hibernate jsf

我无法从硬拷贝中删除打印按钮。有没有其他方法可以删除打印按钮?我正在使用素面。

这是代码

<p:commandButton value="#{msg['print']}" type="button" icon="ui-icon-print"
                        style="font-size:small;margin-left:94%;">
                        <p:printer target="tab1" />
                    </p:commandButton>

提前感谢!!

1 个答案:

答案 0 :(得分:1)

如果你想在打印页面时删除任何按钮,你只需按照以下步骤使用css:

  1. 将ID设置为您的按钮。
    <p:commandButton id="btnPrint" ... />
  2. 只需将您的print.css添加到您网页的头部即可。注意 媒体现在设置为打印
    <link rel="stylesheet" href="URL to your print.css" type="text/css" media="print" />
  3. 通过在CSS中声明 display:none; 来隐藏您的按钮。
    #btnPrint{display:none;}