0

CrystalReports のロゴ、更新、およびエクスポート アイコンを無効にしようとしています。

これを達成するために、次のオプションを試しました

BOE.ear/BOE.war/WEB-INF/eclipse/plugins/webpath.CrystalReports/web/WEB-INF/web.xml のエントリの下に追加

<context-param> 
<param-name>viewrpt.export</param-name> 
<param-value>false</param-value> 
<description>Set whether a export button will be shown</description> 
</context-param> 

<context-param> 
<param-name>viewrpt.logo</param-name> 
<param-value>false</param-value> 
<description>Set whether a logo will be shown</description> 
</context-param> 

<context-param> 
<param-name>viewrpt.refresh</param-name> 
<param-value>false</param-value> 
<description>Set whether a refresh button will be shown</description> 
</context-param> 

しかし、これは機能していません。専門家のアドバイスは役に立ちます。ありがとう。

4

1 に答える 1

0

デフォルトでは、BI4 はコンパイル済みの JSP ファイルを使用し、コードに加えた変更を無視します。

これらのサポートされていない変更を行う場合は、最初にアーカイブglobal.properties内のフォルダーWEB-INF/internalでファイルを見つけます。BOE.warプロパティを探して、からにprecompiled.jsp.files.use変更します。truefalse

次に、BOE webapp をアプリケーション サーバーに再デプロイします。変更が適用されます。

于 2015-04-21T09:13:25.063 に答える