基本的なカスタマイズ > ユーザーインタフェースのカスタマイズ > 一般的な UI のカスタマイズ > システムバナー警告メッセージ
  
システムバナー警告メッセージ
Windchill アプリケーション内のすべてのページに表示されるシステム全体のバナーメッセージを作成できます。
警告バナー機能の有効化
1. 次の行コードを <Windchill>\codebase\netmarkets\jsp\util\begin_custom.jspf
<%@ include file="/netmarkets/jsp/util/banner_custom.jspf"%>
に挿入します。
2. Embedded Servlet Engine を再起動します。
文字コードに関する注意事項
最近のバージョンの Tomcat では、文字セットが UTF-8 に設定されるようにするため、以下の行を begin_custom.jspf に追加する必要があります。これを行わない場合、コンテンツが正しく表示されないことがあります。
<%@ page contentType="text/html; charset=UTF-8" %>
警告メッセージを Windchill UI ページの一番上に表示します。
警告メッセージを HTML フォーマットで以下のファイルに記述します。<Windchill>\codebase\netmarkets\jsp\util\banner.txt
例:
<div
style="float:left;
clear: both;
position: absolute;
margin: 2px 170px;
padding: 3px;
border: 1px solid #000;
background-color: #fff;
top: 3px;
color: #006600;
font-weight: bold;
font-size: 12px;
z-index: 1000">

<font face="verdana">
<!-- Banner begins here -->
Windchill server will be down 1/1 for maintenance
<!-- Banner ends here -->
</font>
</div>
Windchill UI ページの警告メッセージの削除
<Windchill>\codebase\netmarkets\jsp\util\banner.txt を空のファイルに設定します。
警告バナー機能の無効化
1. <Windchill>\codebase\netmarkets\jsp\util\begin_custom.jspf を空のファイルに設定します。
2. Embedded Servlet Engine を再起動します。