基本的なカスタマイズ > ユーザーインタフェースのカスタマイズ > 操作の追加と UI への組み込み > タブモデル > 目的 > カスタマイズポイント > 手順 — 第 2 レベルナビゲーションリンクの除去
  
手順 — 第 2 レベルナビゲーションリンクの除去
更新する必要のある操作モデル定義を navigation-actionModels.xml から custom-actionModels.xml にコピーします。コピーした操作モデル定義から操作定義を除去して、操作モデル定義を更新します。
製品のナビゲーション操作モデルのオリジナル定義は次のとおりです。
<model name="product navigation">
<action name="list" type="product"/>
<action name="separator" type="separator"/>
<action name="view" type="object"/>
<action name="listFiles" type="product"/>
<action name="listTeam" type="product"/>
<action name="listProduct" type="work"/>
<action name="changeMonitor" type="product"/>
<action name="view_forum" type="project"/>
<action name="MyWorkspace" type="product"/>
<action name="listTemplates" type="product"/>
<action name="listUtilities" type="product"/>
</model>
上記の製品操作リストから「変更モニター」操作を除去した後、リストは以下のようになります。
<model name="product navigation">
<action name="list" type="product"/>
<action name="separator" type="separator"/>
<action name="view" type="object"/>
<action name="listFiles" type="product"/>
<action name="listTeam" type="product"/>
<action name="listProduct" type="work"/>
<action name="view_forum" type="project"/>
<action name="MyWorkspace" type="product"/>
<action name="listTemplates" type="product"/>
<action name="listUtilities" type="product"/>
</model>